misc/coverity_model.c
author alfadur
Mon, 16 Jul 2018 22:59:58 +0300
changeset 13527 282e5e54386f
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Something down in the food chain already uses bitflags, so might as well switch to them

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

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