misc/coverity_model.c
author sheepluva
Thu, 28 Apr 2016 21:15:08 +0200
changeset 11766 abcdb7bc2620
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
merge 3 new sound effects added by Wuzzy

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

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