misc/coverity_model.c
author sheepluva
Wed, 17 Dec 2014 21:01:44 +0100
changeset 10691 97f45f1374be
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
change speechfix implementation (no "continue" anymore

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

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