misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Fri, 09 Mar 2018 14:27:37 +0100
changeset 13142 39aa98d01e80
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
ACF3: Fix cannibals sometimes doing nothing for a full turn This was because hogs got confused because walking was forbidden by SetInputMask. Now we use a proper hedgehog effect heArtillery.

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

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