misc/coverity_model.c
author nemo
Sat, 14 Feb 2015 17:34:12 -0500
changeset 10818 f642a28cab0c
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Add placement of airmines in engine outside of hog proximity. Has a bug, only protecting 1st team. Also fix a spelling error and rename gstHHChooseTarget to gstChooseTarget

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

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