misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Sat, 07 Oct 2017 20:07:21 +0200
changeset 12669 bc34fc75670e
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix old team name not being removed after renaming team in frontend

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

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