misc/coverity_model.c
author nemo
Thu, 29 Nov 2018 10:49:08 -0500
changeset 14341 d5317635f368
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
fix bounds check, make out of bounds air mines fall since there's no land to check them into

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

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