misc/coverity_model.c
author unC0Rr
Tue, 24 Nov 2015 12:09:41 +0300
branchqmlfrontend
changeset 11428 cc12bba5b2a2
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Support for protocol commands which are equal to suffix of another protocol command

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

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