misc/coverity_model.c
author unc0rr
Sat, 27 Feb 2016 18:02:24 +0300
changeset 11578 013264e25d71
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Recognize ghost points in checker

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

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