misc/coverity_model.c
author nemo
Thu, 17 May 2018 20:04:39 -0400
changeset 13394 7b4726ef2308
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
0.9.24 merge of physfs tweak

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

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