misc/coverity_model.c
author nemo
Wed, 07 Nov 2018 16:44:16 -0500
changeset 14167 48b9da0178eb
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
oups getter should have it too

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

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