misc/coverity_model.c
author sheepluva
Sun, 02 Oct 2016 00:42:29 +0200
changeset 11863 38fd32724a61
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
and while I'm at it, fix seduction... kinda ♥

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

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