misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Wed, 07 Mar 2018 22:47:55 +0100
changeset 13096 d78e65c66573
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Add hedgehog effect heArtillery, allows to set per-hedgehog artillery mode Allowed effect values: 0 = not active 1 = permanently active 2 = termporarily active (sniper rifle)

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

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