misc/coverity_model.c
author sheepluva
Sun, 08 Dec 2019 02:09:19 +0100
branchhedgeroid
changeset 15515 de08a3ae4f8d
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
hedgeroid/frontlib: update proto and weapons number

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

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