misc/coverity_model.c
author antonc27 <antonc27@mail.ru>
Thu, 15 Oct 2015 01:13:23 +0200
branchios-revival
changeset 11211 279ed2931be8
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Fix for wrong path of restored game Note: http://stackoverflow.com/questions/25884382/ios-8-bundle-path-changes

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

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