misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Sat, 08 Apr 2017 21:43:48 +0200
changeset 12193 71c47122fbc0
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Add ammotype amDuck for rubber duck Still needs some tweaking (eject position, ammo menu slot)

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

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