misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Sun, 15 Jul 2018 19:49:31 +0200
changeset 13487 d23731fe84d4
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix hwengine --help returning with exit code 51

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

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