misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Sat, 29 Sep 2018 14:52:13 +0200
changeset 13812 0beff00d223a
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Set script globals TurnTimeLeft and ReadyTimeLeft immediately after they were changed by Lua call

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

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