misc/coverity_model.c
author sheepluva
Wed, 17 Dec 2014 14:56:14 +0100
changeset 10687 2e921409b5b1
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
cleanup speech bubble code a little. this fixes issue #719

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

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