misc/coverity_model.c
author sheepluva
Fri, 16 Sep 2016 00:41:03 +0200
changeset 11849 bc5714636364
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
fix typo and hopefully also pas2c

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

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