misc/coverity_model.c
author sheepluva
Tue, 18 Nov 2014 02:57:47 +0100
changeset 10514 a1423588a4e4
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
chat: fix some glitches, add /togglechat command for changing chat visibility

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

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