misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Fri, 23 Mar 2018 03:37:07 +0100
changeset 13278 8f579173b161
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
The Specialits: Use gfSwitchHog for hog switching and delete the terrible Lua hacks

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

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