misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Mon, 19 Nov 2018 18:27:45 +0100
changeset 14267 bf627790da14
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Show extra seconds when collecting a crate in Teamwork String freeze is not violated because the string was already collected.

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

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