misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Fri, 06 Oct 2017 20:17:12 +0200
changeset 12662 7b319fac46e2
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Strip invalid PNG profiles from PNGs Bad PNGs caused a few annoying warnings like “libpng warning: iCCP: known incorrect sRGB profile”. Command used: pngcrush -rem gAMA -rem cHRM -rem iCCP -rem sRGB Note that many images have “@2x” in their name, this probably explains why they have been overlooked before.

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

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