misc/coverity_model.c
author nemo
Wed, 31 Oct 2018 15:32:47 -0400
changeset 14053 084db65b3657
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
check for teamgone before activating switcher

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

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