misc/coverity_model.c
author alfadur
Sat, 03 Nov 2018 16:02:38 +0300
changeset 14136 1dcd7e5e0aee
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
should have been just norm

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

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