misc/coverity_model.c
author nemo
Sat, 23 Jan 2016 16:07:14 -0500
changeset 11527 44e646598e6a
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
sparkles for dynamite at sheepy's request. he can tweak values if he wishes

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

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