misc/coverity_model.c
author sheepluva
Sun, 10 Jan 2016 18:01:17 +0100
changeset 11487 8e221d2a368e
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
don't attempt to prettify alpha of single-pixel textures (segfault with "digital" theme from forums)

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

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