misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Mon, 18 Apr 2016 17:33:07 +0200
changeset 11670 be57b0e3e289
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Portal mission: Fix speech bubbles appearing when crate got destroyed

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

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