misc/coverity_model.c
author nemo
Mon, 14 Jan 2019 15:11:15 -0500
branch0.9.25
changeset 14589 9c03b3cd6d16
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
just focus on the unsafe deletes in a hopefully branch-safe fashion

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

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