misc/coverity_model.c
author nemo
Tue, 06 Mar 2018 15:21:36 -0500
changeset 13085 26173dd0c606
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
the clipping was just due to remote abuse anyway - this addresses a couple of the concerns from the bug

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

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