misc/coverity_model.c
author Wuzzy
Mon, 27 Jul 2015 11:51:05 -0400
changeset 11028 37977c3994e6
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Block bouncing on the anti-portal surfaces

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

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