misc/coverity_model.c
author nemo
Fri, 28 Nov 2014 14:58:33 -0500
changeset 10556 c4ca0fc00c3b
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
zopfli compression for images where the win was 10+% and the files would be included in the release

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

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