misc/coverity_model.c
author sheepluva
Mon, 04 May 2015 18:32:33 +0200
changeset 10926 43612076e989
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
chat: simplify some code and fix bugs I noticed during testing

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

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