misc/coverity_model.c
author mikade <redgrinner@gmail.com>
Wed, 03 Jun 2015 22:16:03 +0900
changeset 10979 a332a60df7ce
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- some new mission icons - add variable portal limiter (and effects) to TechRacer - allow variable (not just infinite) ufo fuel - possibly break stuff some - more whitespace?

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

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