misc/coverity_model.c
author antonc27 <antonc27@mail.ru>
Fri, 14 Aug 2015 02:10:53 +0200
branchios-revival
changeset 11119 f08d5bb1d2b0
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Fix for loading missions descriptions Note: Much way better is to use NSDictionary here! Must be refactored

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

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