misc/coverity_model.c
author sheepluva
Wed, 18 Mar 2015 21:52:13 +0100
changeset 10863 9d3e1123bd43
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
fallback to first color in colors array if there is no valid color specified

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

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