misc/coverity_model.c
author sheepluva
Sat, 10 Dec 2016 21:28:10 +0100
changeset 12107 0695302f3f5f
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix ScriptExists() destroying lua stack (fixes bug #146)

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

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