misc/coverity_model.c
author nemo
Tue, 21 Jul 2015 08:41:06 -0400
changeset 11025 999afa63035f
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
just disable landpixels w/ blurry land instead. the mask can be helpful for debugging at least.

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

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