misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Tue, 27 Mar 2018 22:45:31 +0200
changeset 13292 29055da6a6cd
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix broken fallback to sndFirePunch1 if sndFirePunch{2,6} is missing

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

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