misc/coverity_model.c
author nemo
Thu, 13 Dec 2018 12:12:13 -0500
branch0.9.25
changeset 14428 a32b967f1341
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
This seems to be all that was needed for bug #719

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

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