misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Sat, 27 Oct 2018 19:50:01 +0200
changeset 14024 1effb8b72b11
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
New taunt: Runaway, when something is about to blow up near current hog

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

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