misc/coverity_model.c
author sheepluva
Sun, 10 Jan 2016 21:14:06 +0100
changeset 11493 62da13a15aff
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
merge Wuzzy's bluehogfix bookmark. note: there might be a cleaner fix...

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

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