misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Wed, 19 Apr 2017 22:03:11 +0200
changeset 12289 c20fbf96b853
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix hedgehog self-damage not counted, and there were never Stupid taunts/announces

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

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