misc/coverity_model.c
author nemo
Thu, 12 Jan 2017 11:17:53 -0500
changeset 12115 771b51cff812
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
lowercase hedgehog, duplicate comment to description

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

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