misc/coverity_model.c
author sheepluva
Fri, 05 Dec 2014 02:20:33 +0100
changeset 10627 07ff179b0d97
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
darken wrapped world etc. some more

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

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