misc/coverity_model.c
author sheepluva
Tue, 05 Sep 2017 20:46:40 +0200
changeset 12452 e18cfe90e4e2
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
fix physfs using inflateCopy() (not part of miniz)

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

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