misc/coverity_model.c
author sheepluva
Fri, 29 Apr 2016 18:18:32 +0200
changeset 11780 ee85798d6974
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)

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

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