misc/coverity_model.c
author unc0rr
Sun, 22 Nov 2015 18:06:32 +0300
branchqmlfrontend
changeset 11425 2947f06e8533
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Another approach to parsing two-lines protocol commands

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

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