misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Sat, 23 Sep 2017 07:38:41 +0200
changeset 12504 d97050a7c074
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Stop PhysFS from complaining when a random name .cfg file is missing

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

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