misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Mon, 01 May 2017 00:04:28 +0200
changeset 12388 0eb1457f7b94
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Add big fat developer warning to all racing scripts about compability This is done to prevent me and others from committing crap. :D

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

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