misc/coverity_model.c
author nemo
Thu, 03 Mar 2016 15:41:53 -0500
changeset 11588 7c8fd2f66e9b
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
fix and/or screwup that was causing girders in tunnels to erase the tunnel. also a little bit of indentation/case fixing

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

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