misc/coverity_model.c
author sheepluva
Sat, 23 Jan 2016 10:14:47 +0100
changeset 11522 17bd1c25670a
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
minor code tweaks

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

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