misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Tue, 03 Oct 2017 15:50:10 +0200
changeset 12639 2473b03629c8
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Remove broken “Play again” button in stats page after an online game

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

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