misc/coverity_model.c
author unc0rr
Mon, 29 Apr 2019 23:41:25 +0200
changeset 14875 aed75d439027
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Implement external events approach to input user actions into engine. Doesn't work for some obscure reason ("Error: Unknown method parameter type: LongEventType")

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

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