misc/coverity_model.c
author sheepluva
Sun, 12 Jul 2015 08:20:33 +0200
changeset 11003 9e4baaeade99
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
small changelog update

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

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