misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Mon, 12 Feb 2018 22:22:27 +0100
changeset 12993 a15413d896c3
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it Previously, a player could just name their hog "Mutant" and give it the respective hat to try to confuse other players. This is no longer possible.

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

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