misc/coverity_model.c
author sheepluva
Sat, 29 Nov 2014 17:33:51 +0100
changeset 10574 1636b0efa415
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
oops. no need to (re)open stderr I guess

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

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