misc/coverity_model.c
author nemo
Sun, 23 Nov 2014 18:10:15 -0500
changeset 10544 37b0e1f92e3c
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
prevent seduction of frozen hogs

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

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