misc/coverity_model.c
author sheepluva
Tue, 31 Mar 2015 03:41:36 +0200
changeset 10878 963bc20f511c
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
small pixel jizz tweak

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

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