misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Wed, 13 Apr 2016 01:19:37 +0200
changeset 11720 5cb2f245ee2f
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Add script parameter support to Construction Mode Allows to set initial energy, energy per round and max. energy

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

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