misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Fri, 27 Oct 2017 05:05:37 +0200
changeset 12783 7849398ec0fa
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Oops. Changelog was wrong, the error message spam was for ACF8, not ACF7

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

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