misc/coverity_model.c
author nemo
Sat, 05 Jan 2019 13:23:43 -0500
changeset 14521 f5487302d53b
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Allow customising the teams

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

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