misc/coverity_model.c
author S.D.
Mon, 31 Oct 2022 02:11:37 +0200
changeset 15915 35d26863a88e
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Don't show chat messages from ignored users in the game (same as in the frontend), but still save them for the demo

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

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