misc/coverity_model.c
author sheepluva
Sun, 04 Dec 2016 01:07:36 +0100
changeset 12101 2e70ef81e281
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
copyToXYFromRect: simplify my math (so that it actually, you know, works...)

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

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