misc/coverity_model.c
author unC0Rr
Thu, 29 Sep 2022 16:29:23 +0200
changeset 15881 212e16c60bf5
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Add replay storage to the new server implementation

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

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