misc/coverity_model.c
author koda
Sun, 15 May 2016 10:43:18 +0200
changeset 11807 93621207563b
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
avrec crash/math fix (sheepy here, committing koda's fix because I'm tired of having it lying around in my repo :P

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

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