misc/coverity_model.c
author nemo
Fri, 18 May 2018 09:56:56 -0400
branch0.9.24
changeset 13395 fa81f809fbb9
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
IFDEF for Phys 2.0 which has no mountHandle - result will just be no hwp in hwp on those systems, which would be rarely used and DLC only.

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

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