misc/coverity_model.c
author sheepluva
Wed, 10 Dec 2014 20:03:28 +0100
changeset 10648 75498cfe6267
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
remove redundant check

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

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