misc/coverity_model.c
author sheepluva
Tue, 26 May 2015 23:29:53 +0200
changeset 10970 7341e0c3f966
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
LuaAPI: fix OnHogAttack the incorrect AmmoType (amNothing) under certain conditions. Thanks for CheezeMonkey for reporting this

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

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