misc/coverity_model.c
author nemo
Thu, 13 Dec 2018 09:07:00 -0500
changeset 14423 0281b80d366c
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
might as well render preview using smallest size to speed it up

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

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