misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Mon, 25 Sep 2017 21:18:59 +0200
changeset 12522 228ebbc8656d
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix ASA: A frozen adventure not working when starting from checkpoint

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

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