misc/coverity_model.c
author sheepluva
Mon, 19 Jan 2015 01:18:43 +0100
changeset 10804 f5dc72575c92
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
feedback/linux: fix wrong mem size being reported if mem > 4GB. thanks to tomreyn for reporting this issue

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

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