misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Thu, 04 Oct 2018 17:55:08 +0200
changeset 13836 b07610de9957
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
gameServer: Remove broken and undocumented /part chat command If a player used it, a lot of protocol errors start to happen.

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

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