misc/coverity_model.c
author nemo
Fri, 20 May 2022 17:24:14 -0400
changeset 15851 9bb85e43e492
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
add more checks on nil current hedgehog gear, remove checks on nil current hedgehog which should never happen.

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

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