misc/coverity_model.c
author nemo
Wed, 09 Aug 2017 15:36:05 -0400
changeset 12453 8b89fe2115ad
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
So, was trying to allow spawning on level surfaces of ice but not girders, but seems to be failing. We'll call this WIP

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

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