misc/coverity_model.c
author sheepluva
Sun, 04 Dec 2016 02:02:18 +0100
changeset 12102 51596d30a724
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
fix chat SDL surfaces being in wrong color format (didn't play well with copyToXY's new quick pixel copies)

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

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