misc/coverity_model.c
author unc0rr
Sun, 14 Jan 2018 23:30:42 +0100
branchqmlfrontend
changeset 12897 0088bcccd19a
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix for freebsd

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

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