misc/coverity_model.c
author sheepluva
Sun, 09 Jul 2017 00:30:17 +0200 (2017-07-08)
changeset 12438 d199a076eff9
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
fix issue #199: video recording crashed when trying to freeEverything twice
void fpcrtl_halt(int num) {
    __coverity_panic__();
}

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