misc/coverity_model.c
author sheepluva
Wed, 02 Sep 2015 04:03:24 +0200
changeset 11060 506b6184f4af
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
fix on-code documentation of EraseSprite

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

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