misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Sun, 15 Jul 2018 14:21:06 +0200
changeset 13486 4ef83bcb850b
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Clean up cMaxHHs and cMaxTeams a bit, get rid of hardcoded numbers

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

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