misc/coverity_model.c
author nemo
Thu, 30 Jul 2015 16:28:35 -0400
changeset 11030 2ef7700c25e9
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
darken and blur the cupcake a bit so that people stop trying to teleport on it

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

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