misc/coverity_model.c
author nemo
Tue, 24 Oct 2017 19:54:38 -0400
changeset 12760 5acf6b91df76
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
you know what... I think everything would have been fine if we'd simply required all this hog stuff to be in the same block...

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

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