misc/coverity_model.c
author nemo
Sun, 18 Jan 2015 17:14:37 -0500
changeset 10803 df39aa3f6d4d
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
merge 0.9.21, hopefully without screwing anything up due to this having been left for a while + parallel commits that occurred...

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

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