misc/coverity_model.c
author sheepluva
Tue, 27 Oct 2015 21:11:44 +0100
branchios-revival
changeset 11247 5c21ee975d5d
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
somebody was so nice to mention me in credits, but misspelled my last name

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

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