misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Fri, 20 Oct 2017 14:17:56 +0200
changeset 12714 5a57acce9cae
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix bubbles drawn on the wrong side when hog drowns and faces right

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

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