misc/coverity_model.c
author nemo
Mon, 12 Mar 2018 19:15:45 -0400
branchqt5transition
changeset 13175 9f6f2e51d2ef
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
these changed, presumably in SDL2 - might want to review all the others

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

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