misc/coverity_model.c
author antonc27 <antonc27@mail.ru>
Fri, 06 Nov 2015 03:21:00 +0100
branchios-revival
changeset 11313 4701700276f5
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- 'iOS Deployment Target' bump to 8.0 - Xcode projects updated to recommended settings - 'Bundle Identifier' changed back to old one

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

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