misc/coverity_model.c
author unc0rr
Mon, 09 Nov 2015 20:51:18 +0300
changeset 11332 41ca5f8ace18
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Pass correct script name for scripts with spaces in name

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

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