misc/coverity_model.c
author sheepluva
Sun, 30 Nov 2014 17:20:37 +0100
changeset 10584 f44ec13e3082
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
fix copypasta-fail that would cause splashes to use invalid sprite data pointer. should fix issue #838

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

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