misc/coverity_model.c
author unc0rr
Fri, 05 Jan 2018 21:43:33 +0100
branchqmlfrontend
changeset 12877 c9418f57fcbc
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Comment out functions that don't need to be called for engine in frontend window

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

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