misc/coverity_model.c
author unc0rr
Mon, 28 Dec 2015 21:51:12 +0300
changeset 11466 4b5c7a5c49fd
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Defer kicking to the time when everything is in consistent state

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

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