misc/coverity_model.c
author unC0Rr
Wed, 14 Jan 2015 11:47:50 +0300
changeset 10787 50a4cdeedb44
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Oops, misspelled protocol command

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

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