misc/coverity_model.c
author nemo
Fri, 16 Jan 2015 17:51:29 -0500
changeset 10789 acbf69e2e5cf
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.

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

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