misc/coverity_model.c
author unc0rr
Sat, 07 Nov 2015 23:44:49 +0300
changeset 11320 556eafd1443a
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Store some more details on game config in the database

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

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