misc/coverity_model.c
author nemo
Wed, 20 Sep 2017 13:15:17 -0400
changeset 12464 06bf46238a89
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
ranges for alnum were silly. also lets not fail to same value

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

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