misc/coverity_model.c
author sheepluva
Sun, 09 Aug 2015 05:19:56 +0200
changeset 11044 c3d76daae637
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
this should prevent hogs from hovering in air after using hammer

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

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