misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Wed, 31 Oct 2018 13:35:53 +0100
changeset 14062 44f20c9e6861
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Add Ouch taunt for particulary damaging hits (fall, bullet, shove, hammer)

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

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