misc/coverity_model.c
author unc0rr
Thu, 25 Feb 2016 23:17:52 +0300
changeset 11575 db7743e2fad1
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
More work on best time ghost feature

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

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