misc/coverity_model.c
author sheepluva
Sat, 29 Nov 2014 05:25:34 +0100
changeset 10568 5a867053add8
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
merge

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

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