misc/coverity_model.c
author nemo
Tue, 02 Dec 2014 13:29:06 -0500
changeset 10603 bda5c7caf396
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.

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

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