misc/coverity_model.c
author alfadur
Wed, 27 Mar 2024 02:57:44 +0300
changeset 16031 e915ed28726e
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
thread server reference through dispatch to ensure rooms can be auto dropped

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

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