misc/coverity_model.c
author unc0rr
Wed, 29 Apr 2015 23:52:18 +0300
branchqmlfrontend
changeset 10906 13fde38281fc
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Rendering some code

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

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