misc/coverity_model.c
author sheepluva
Sun, 01 Mar 2015 17:12:02 +0100
changeset 10842 a039464cbb4a
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
since fonts can be loaded in late, update cursor position before first chat display

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

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