misc/coverity_model.c
author nemo
Sat, 21 May 2016 15:23:08 -0400
changeset 11831 dd18d8100afd
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Change this back to allowing hooking rope to hogs again, 'cause, well, rage...

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

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