misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Mon, 16 Jul 2018 04:50:23 +0200
changeset 13488 dbf4f7a677be
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
When hwengine crashes w/ error 217, write backtrace in log, too By using WriteLnToConsole to achive that.

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

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