misc/coverity_model.c
author sheepluva
Sun, 14 May 2017 15:20:26 +0200
changeset 12419 d43ded9a0c34
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Remove IceGun from default Highlander weaponset

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

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