misc/coverity_model.c
author koda
Mon, 26 Sep 2016 23:36:00 -0400
changeset 11856 5edd66c2d422
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Drop xfire module The service shut down, this is now dead code with potential GPL license incompatibility.

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

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