misc/coverity_model.c
author unc0rr
Tue, 28 Apr 2015 11:49:48 +0300
branchqmlfrontend
changeset 10902 29519fe63fdd
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Will use own tree type

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

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