misc/coverity_model.c
author unc0rr
Mon, 04 May 2015 17:48:57 +0300
branchqmlfrontend
changeset 10908 1bd7a3a28b18
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Try another approach, WIP

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

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