misc/coverity_model.c
author nemo
Wed, 07 Sep 2022 16:49:59 -0400
branch1.0.0
changeset 15854 aefa91a7acf4
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Added tag 1.0.1-release for changeset fcea0f51d94f

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

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