misc/coverity_model.c
author sheepluva
Fri, 29 Sep 2017 23:31:29 +0200
changeset 12599 95f0e475ca8e
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
change return codes to avoid overlap with fpc ones

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

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