misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Sun, 11 Mar 2018 11:01:27 +0100
changeset 13162 9ec7d2fb9da7
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
ASA_cosmos: Fix game not ending when hero dies after being seen by Guards

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

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