misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Wed, 04 Oct 2017 18:34:02 +0200
changeset 12644 59b46e6f36ff
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix Birdy descending into water if hog took damage before it got picked up (bug #160)

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

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