misc/coverity_model.c
author sheepluva
Sat, 30 Apr 2016 21:06:46 +0200
changeset 11782 8873546a893c
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
update changelog

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

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