misc/coverity_model.c
author sheepluva
Tue, 21 Jun 2016 22:03:09 +0200
changeset 11835 8f7e28428f3e
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
remove experimental in-game credits code

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

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