misc/coverity_model.c
author sheepluva
Wed, 01 Apr 2015 02:42:37 +0200
changeset 10883 294ef49efdd2
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
terminate engine and output fatal error message if hedgehogs are added incorrectly

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

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