misc/coverity_model.c
author sheepluva
Mon, 25 May 2015 22:32:32 +0200
changeset 10960 4f77e60146fc
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
some changelog additions, not complete yet

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

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