misc/coverity_model.c
author sheepluva
Mon, 10 Aug 2015 02:39:34 +0200
changeset 11045 9d840edd0ff9
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
update copyright year in manpage

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

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