misc/coverity_model.c
author unc0rr
Mon, 28 Mar 2016 21:20:11 +0300
changeset 11628 515d2d38ab8b
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Declare achievements alongwith EndGame call, since it would skip SendStats

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

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