misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Wed, 27 Sep 2017 23:09:25 +0200
changeset 12568 8a9919381629
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
ASA, desert03: Change box appearance, don't lose as long there are still flames in game

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

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