misc/coverity_model.c
author nemo
Sun, 01 Nov 2015 15:08:39 -0500
changeset 11267 9621fdcad965
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
do the same thing for the chute/birdy/saucer block

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

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