misc/coverity_model.c
author nemo
Sun, 18 Jan 2015 14:47:25 -0500
changeset 10794 ace862eda192
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
radius and sprite drawing tweaks to match the still temporary sprite. also a begin/end sheepluva suggested

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

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