misc/coverity_model.c
author unc0rr
Sat, 11 Apr 2015 17:23:56 +0300
branchqmlfrontend
changeset 10890 24e68c7d2e79
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Oops, forgot this file

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

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