misc/coverity_model.c
author sheepluva
Fri, 29 Sep 2017 22:09:11 +0200
changeset 12592 00b539e6115d
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
rename ifTransparent to ifColorKey This should make the name less confusing. However this image-flag will possibly be dropped completely.

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

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