misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Sat, 23 Sep 2017 09:12:35 +0200
changeset 12501 92c597704e57
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Use completely random hats when clicking on "Random hats" button in team editor - Previously this button used the hat sets from types.txt

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

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