misc/coverity_model.c
author sheepluva
Fri, 21 Nov 2014 19:09:45 +0100
changeset 10524 2bc0ff00e95b
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
password flag was the wrong way around

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

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