misc/coverity_model.c
author unc0rr
Tue, 24 Nov 2015 09:00:43 +0300
branchqmlfrontend
changeset 11427 1895a9504a35
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Add the rest of protocol commands - Fix some generator glitches

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

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