misc/coverity_model.c
author nemo
Sat, 29 Nov 2014 21:29:32 -0500
changeset 10583 8994cf0bb33e
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
oh right, forgot sheepluva had fixed ice

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

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