misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Tue, 04 Sep 2018 20:38:15 +0200
changeset 13764 f5eea79da795
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix crash when defeating all enemies in ACF8 (HideHog was called too early)

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

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