misc/coverity_model.c
author sheepluva
Sun, 01 Mar 2015 16:32:14 +0100
changeset 10839 aa0ceb47da1d
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
make sure cursor drawing position does not get messed up by screen resize

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

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