misc/coverity_model.c
author sheepluva
Fri, 29 Sep 2017 22:53:53 +0200
changeset 12596 c9711561f947
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
fix some things that annoy pas2c and whitespaces

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

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