misc/coverity_model.c
author sheepluva
Tue, 26 Apr 2016 14:22:54 +0200
changeset 11704 1694b379c83f
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
fix clouds/flakes area not being adjusted after ResizeLand()

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

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