misc/coverity_model.c
author unc0rr
Mon, 19 Jan 2015 00:12:26 +0300
changeset 10801 50bc2c75eee7
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix here too

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

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