misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Mon, 21 Jan 2019 02:09:30 +0100
changeset 14639 3e15412536c8
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
ACF5: Register is as "spare traitor" if player walks too far away This is done to prevent free attacks at cannibals, which don't get a turn before the choice was made.

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

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