misc/coverity_model.c
author alfadur
Mon, 19 Nov 2018 04:21:44 +0300
changeset 14234 27ae2d3d04b6
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
seems like it's either this or swap indexing order everywhere

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

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