misc/coverity_model.c
author nemo
Fri, 22 Sep 2017 18:07:11 -0400
changeset 12498 f3d6f1b0b59d
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
should be harder to dodge than a xor

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

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