misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Thu, 15 Feb 2018 18:32:28 +0100
changeset 13009 67cc3cac4c8e
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
TrophyRace: Show fastest team times (instead of clan times)

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

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