misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Sat, 01 Sep 2018 12:43:19 +0200
changeset 13732 b83154cc8fad
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Prevent pause/synchronizing/AFK mode text being rendered at the same time

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

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