misc/coverity_model.c
author antonc27 <antonc27@mail.ru>
Sat, 17 Mar 2018 22:37:13 +0100
branchios-develop
changeset 13241 fc98ea64e0ef
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Migrate AppIcons to xcassets - Use universal launch screen instead of bunch of images

void fpcrtl_halt(int num) {
    __coverity_panic__();
}

int fpcrtl_abs(int num) {
    return num >= 0 ? num : -num;
}