misc/coverity_model.c
author sheepluva
Sat, 04 Jul 2020 15:31:51 +0200
changeset 15666 10bcec19045c
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix pas2c breakage caused by superfluous "+"s added by 250c778463f3, d9c62f196fe0 and 92ce801d0681

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

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