misc/coverity_model.c
author unC0Rr
Thu, 29 Sep 2022 16:30:02 +0200
changeset 15882 f185e7367dd3
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Add some work towards having checker work with the new server

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

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