misc/coverity_model.c
author antonc27 <antonc27@mail.ru>
Thu, 13 Aug 2015 13:40:12 +0200
branchios-revival
changeset 11113 6382679643e4
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Fix for app crash after ending game Note: Note sure why halt() not working correctly, also must pay attention to memory management here

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

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