misc/coverity_model.c
author alfadur
Tue, 28 Aug 2018 17:19:25 +0300
changeset 13801 59ea2403f62d
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
move everything test related into test cfg

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

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