misc/coverity_model.c
author alfadur
Sat, 16 Oct 2021 02:20:15 +0300
changeset 15821 4a1e3d824c34
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
make domesticated sentries not target their owners

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

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