misc/coverity_model.c
author sheepluva
Fri, 29 Apr 2016 19:01:52 +0200
changeset 11781 f2031643fe98
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
show credits only briefly

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

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