misc/coverity_model.c
author unc0rr
Fri, 28 Oct 2022 21:12:01 +0200
changeset 15887 fe519de9c270
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Run engine and socket listener in parallel to avoid ping timeouts - Update dependencies

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

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