misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Tue, 15 Nov 2016 03:00:56 +0100
changeset 11892 083c12795632
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Show symbols at bottom right while extra damage / low grav. are active PC version only. No change for touch interface.

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

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