misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Fri, 05 Oct 2018 04:57:03 +0200
changeset 13845 1a1fb597da8f
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
gameServer: Add user warning if got chat command not suitable for current state (lobby/room); fix protocol errors

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

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