misc/coverity_model.c
author sheepluva
Thu, 16 Jul 2015 22:16:35 +0200
changeset 11017 16c47a5573e4
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
change theme used by sniper training, for performance reasons

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

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