misc/coverity_model.c
author nemo
Mon, 15 Jan 2018 12:15:56 -0500
changeset 12891 856570ddd409
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
add a mask to the sand hog

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

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