misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Mon, 28 Oct 2019 18:58:13 +0100
changeset 15494 3c0a3c824c49
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Racer: Force-enable solid land Otherwise, the land could degrade after each round, making the game progressively easier for later players

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

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