misc/coverity_model.c
author sheepluva
Sat, 23 Jan 2016 23:02:03 +0100
changeset 11528 8826ee0afe01
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
tweak sniper training

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

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