misc/coverity_model.c
author unc0rr
Wed, 16 Dec 2015 00:20:56 +0300
branchqmlfrontend
changeset 11458 8318e841648f
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Send full game config to the engine

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

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