misc/coverity_model.c
author unc0rr
Sat, 12 Jun 2021 20:15:42 +0200
changeset 15790 efe4e3290870
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Add url bot plugin based on url-bot-rs (only the difference from their repo)

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

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