misc/coverity_model.c
author nemo
Fri, 25 Sep 2015 23:30:21 -0400
changeset 11192 0f6916065849
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
This should probably fix feedback that hogs weren't spawning on left side of map.

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

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