misc/coverity_model.c
author nemo
Sat, 17 Nov 2018 14:29:09 -0500
changeset 14241 d5d941737a65
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
verify impact before explosion rating, since the offsets might cause water splashes

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

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