misc/coverity_model.c
author unc0rr
Wed, 24 Jan 2018 22:20:10 +0100
branchqt5transition
changeset 12897 fc47fc4af6bd
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Finish porting. Seems to work, but no thorough testing has been performed

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

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