misc/coverity_model.c
author nemo
Wed, 27 May 2015 10:37:12 -0400
changeset 10969 98cab7f366c3
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
add a bit more spacing around stars, add pad parameter to increase spacing between objects

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

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