misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Sun, 01 Oct 2017 01:48:30 +0200
changeset 12626 ca958a859322
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Change Highlander.cfg to select Default by default Because if you scroll through the list, you often end up with HedgeEditor being chosen as game scheme. xD

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

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