misc/coverity_model.c
author nemo
Sun, 30 Jul 2017 19:06:57 -0400
changeset 12444 832b969ea00c
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
while we're tweaking this phrase, "with" feels awkward

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

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