misc/coverity_model.c
author nemo
Sun, 05 Apr 2015 16:41:39 -0400
changeset 10895 bce67defd804
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Make bouncing a bit less wtf for various gears tested (hog, 'zooka, saucer hog, drill strike). Less hacky is another matter.

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

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