misc/coverity_model.c
author unc0rr
Wed, 24 Oct 2018 21:52:19 +0200
changeset 13957 a4877a16564d
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Also report chat and added rooms in log

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

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