misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Mon, 06 Aug 2018 22:39:39 +0200
changeset 13617 a6abc2c1fc1a
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Show correct health increase when hog health cap is reached

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

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