misc/coverity_model.c
author sheepluva
Sat, 16 Jan 2016 19:20:06 +0100
changeset 11515 4dd77731453b
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
update some old google code links in the code/etc. thanks Wuzzy for the heads-up

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

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