misc/coverity_model.c
author sheepluva
Sat, 29 Nov 2014 03:13:06 +0100
changeset 10562 3388822b3914
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
some more fixing

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

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