misc/coverity_model.c
author nemo
Mon, 08 Dec 2014 10:24:06 -0500
changeset 10636 aba9ae27ead0
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
meh. will persevere. DeleteGear can't call that much stuff...

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

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