misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Wed, 26 Apr 2017 17:52:08 +0200
changeset 12337 75b41f029aaa
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Refactor Frenzy script - Use GetAmmoName instead of hardcoding ammo names into strings - Remove Tracker - Make texts a bit more translator-friendly

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

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