misc/coverity_model.c
author sheepluva
Fri, 16 Sep 2016 00:22:05 +0200
changeset 11848 6a0d6b00dac8
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Highlander: give visual and acustic feedback when weapons are collected from a kill, similar to collecting a crate

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

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