misc/coverity_model.c
author sheepluva
Mon, 16 May 2016 00:15:32 +0200
changeset 11825 bb6503b9847e
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
remove another useless SysUtils include

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

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