misc/coverity_model.c
author nemo
Mon, 08 Dec 2014 10:55:56 -0500
changeset 10638 99975e1860d2
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
oh, probably need nil checks here too

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

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