misc/coverity_model.c
author nemo
Tue, 12 Sep 2017 08:32:01 -0400
changeset 12460 2660611f8b22
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
This should be ok right?

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

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