misc/coverity_model.c
author alfadur
Mon, 28 May 2018 19:50:15 -0400
changeset 13407 06792533ef91
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
ensure shotgun works with portals and make it hit airmines

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

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