misc/coverity_model.c
author nemo
Sat, 25 Nov 2017 11:28:44 -0500
changeset 12845 b63ec501490b
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
At the very least we should match the gameserver length which seems to be 40, not 60

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

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