misc/coverity_model.c
author nemo
Thu, 12 Mar 2020 15:09:16 -0400
changeset 15572 0b16baefefd1
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
er... nevermind. back this out. ApplyDamage should pick this up just fine.

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

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