misc/coverity_model.c
author sheepluva
Tue, 26 Apr 2016 17:02:24 +0200
changeset 11731 d07e749d925d
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
merge construction mode patches by Wuzzy

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

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