misc/coverity_model.c
author sheepluva
Thu, 03 Sep 2015 01:26:03 +0200
changeset 11068 0ff8b968291b
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
allow holding PRECISE key to switch portal ball colors in reverse order

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

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