misc/coverity_model.c
author sheepluva
Wed, 02 Sep 2015 05:52:02 +0200
changeset 11064 884f40b6f640
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
some more tweaks

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

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