misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Wed, 27 May 2020 09:23:25 +0200
changeset 15588 96a02e385d54
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Add taunt chat command: /bubble (hog holds breath) This is based on the "bubble" hat by chujoii

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

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