misc/coverity_model.c
author unc0rr
Thu, 08 Nov 2018 21:57:05 +0100
changeset 14176 5ad911992460
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
A bit of rethinking of game messages and command

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

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