misc/coverity_model.c
author nemo
Sat, 24 Jan 2015 13:49:57 -0500
changeset 10807 66cde98f8cbe
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Make the various mine states a bit clearer (inactive, active but not in seek mode, seek mode, chasing target)

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

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