misc/coverity_model.c
author nemo
Thu, 31 Dec 2015 15:11:44 -0500
changeset 11478 8c95d5a4366c
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Tweak the hole carving to become less agressive about spacing if random points keep failing.

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

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