misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Tue, 30 Oct 2018 23:08:43 +0100
changeset 14042 bf8b7c166b3c
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Play another voice as fallback if sndRevenge could not be found

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

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