misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Thu, 26 Apr 2018 00:21:03 +0200
changeset 13345 e54d6db06f35
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix hog being unable to walk after using sniper rifle without firing both shots

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

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