misc/coverity_model.c
author unc0rr
Tue, 24 Jan 2017 20:28:16 +0300
changeset 12143 7e874846afe3
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Toss code around

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

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