misc/coverity_model.c
author nemo
Sun, 18 Jan 2015 14:18:06 -0500
changeset 10792 f6df7d6e18e5
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Toss in scaled down underwater SD mine as "air mine" pending, er, cybernetic butterflies or whatever

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

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