misc/coverity_model.c
author unc0rr
Mon, 14 Mar 2016 22:04:39 +0300
changeset 11605 dc8de75747f9
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Do not check games lasting for more than 3 hours

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

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