misc/coverity_model.c
author mikade <redgrinner@gmail.com>
Thu, 21 May 2015 18:21:55 +0900
changeset 10950 356c8fb7fb56
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- (Finally) automatically load points for all current TechRacer maps - Hack / break some stuff - Suspend two of the crappier maps

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

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