misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Sat, 10 Feb 2018 15:16:20 +0100
changeset 12959 695cc142827b
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter

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

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