misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Wed, 22 May 2019 23:30:10 +0200
changeset 15035 2e89487540d8
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
ACF2: Prevent cut scene from playing when own hogs are dead or about to die

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

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