misc/coverity_model.c
author nemo
Sun, 23 Nov 2014 18:25:11 -0500
changeset 10545 d347ffa7e372
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
make seduction thaw a frozen hog.

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

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