misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Wed, 09 Jan 2019 19:10:11 +0100
changeset 14529 db646b3c0b95
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Send and display owner name of own teams in online games (fixes bug #468)

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

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