misc/coverity_model.c
author unc0rr
Mon, 01 May 2017 13:59:24 +0300
branch0.9.22
changeset 12401 7342f5020691
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Update racer scripts

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

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