misc/coverity_model.c
author nemo
Sun, 27 May 2018 13:10:32 -0400
changeset 13405 4c813650fe17
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
make the mine slippery too since it has the ice finish - add a gmDelete to the gear if you want it to *not* explode when hit ☺

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

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