misc/coverity_model.c
author sheepluva
Wed, 23 Sep 2015 07:49:46 +0200
changeset 11191 ba192ec1f201
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
fp complained about this line being too long

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

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