misc/coverity_model.c
author nemo
Sun, 11 Dec 2016 18:00:10 -0500
changeset 12115 f214d6315b71
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
requested by CopherNeue - make "flatten-flakes" only exclude the foreground layers. testing on eyes/halloween seems ok.

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

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