misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Sat, 23 Sep 2017 09:35:45 +0200
changeset 12507 f4b0e164a0d5
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Chance that clicking the random hats button produces a set of equal hats

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

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