misc/coverity_model.c
author nemo
Fri, 11 Jan 2019 08:08:28 -0500
changeset 14575 397b2f4502c1
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
couple more use after frees for gear deletion. also rearranged lines a bit and added a redundant exit to try to proof things a bit. more evidence we need rust.

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

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