misc/coverity_model.c
author unc0rr
Sat, 25 Apr 2015 23:46:09 +0300
branchqmlfrontend
changeset 10900 6a805e822074
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Some hedgewars coding a week keeps doctor away

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

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