misc/coverity_model.c
author sheepluva
Sun, 14 Dec 2014 02:37:30 +0100
changeset 10667 5bd2fa61f25b
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
remove links from doxygen project number as doxygen escapes them now

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

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