misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Thu, 17 Nov 2016 14:59:20 +0100
changeset 11909 1d2e89be3eb6
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Update Mutant script New features: - Custom achievements in stats screen - Replace health graph with score graph - Ranking based on score - Improved localization support - Improved mission text - Show messages on scoring

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

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