misc/coverity_model.c
author alfadur
Wed, 27 Mar 2019 23:26:58 +0300
changeset 14726 75ff5c643004
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
actually atlas tests were also broken

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

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