misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Tue, 26 Sep 2017 03:05:59 +0200
changeset 12532 3e6e7b258a33
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
ASA, a frozen adventure: Save bazooka and excess freezers in checkpoints

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

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