misc/coverity_model.c
author unc0rr
Thu, 27 Dec 2018 23:43:54 +0100
changeset 14524 831ecafd74c6
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Start chat_sanitizer package inspired by chat bot on pokerth server

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

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