misc/coverity_model.c
author alfadur
Mon, 05 Nov 2018 23:15:34 +0300
changeset 14142 3119d665d3c6
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
collapse rectangle types back together with consistent usage of size

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

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