misc/coverity_model.c
author nemo
Tue, 24 Oct 2017 14:36:24 -0400
changeset 12754 c7224d202e8b
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
2nd try... just shortcircuit most of onGameTick20 when we are between turns.

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

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