misc/coverity_model.c
author nemo
Thu, 10 Aug 2023 20:48:54 -0400
changeset 16003 8bb07b0f50ca
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
add some round() so that the scale factor compiles at least with non-integer values

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

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