misc/coverity_model.c
author nemo
Fri, 20 Jul 2018 20:00:52 -0400
changeset 13531 282218ab1b28
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
catchup merge on all of alfadur's cool server changes

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

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