misc/coverity_model.c
author nemo
Sun, 24 Mar 2024 14:19:02 -0400
branch1.0.0
changeset 15994 fcc98c953b5e
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
suppress this message too.

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

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