misc/coverity_model.c
author nemo
Thu, 11 Dec 2014 21:32:24 -0500
changeset 10663 9bbb29d2bd68
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
remove a not that somehow magically appeared in a prior commit.

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

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