misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Sat, 30 Sep 2017 01:45:01 +0200
changeset 12604 a45f8eec6869
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
ACF1: Force player to press jump to confirm difficulty dialog To prevent the player from accidentally making a choice too early

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

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