misc/coverity_model.c
author alfadur
Wed, 12 Sep 2018 19:51:45 +0300
changeset 13776 720dc03600c9
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix engine crash when using lasersight outside the world bounds

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

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