misc/coverity_model.c
author koda
Sat, 14 Nov 2015 03:09:24 +0100
branchsdl2transition
changeset 11378 cef3fef64c93
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
cmake: Providing a separate SDL_main is not needed on OSX with SDL2 any more

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

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