misc/coverity_model.c
author nemo
Sat, 22 Jun 2019 10:32:15 -0400
changeset 15197 a5fb73335a87
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Someone didn't understand why they couldn't rejoin a game. Maybe this will help

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

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