misc/coverity_model.c
author nemo
Wed, 24 Dec 2014 11:16:57 -0500
changeset 10711 e2d06732e55d
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
*sigh* Somehow I clobbered these while making the changes, without meaning to. Revert to old ones.

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

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