misc/coverity_model.c
author sheepluva
Wed, 02 Sep 2015 01:25:29 +0200
changeset 11059 659427d9fd17
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
display circle for custom build dist values, display nothing if no limit. map borders are not taken into account at this point

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

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