misc/coverity_model.c
author sheepluva <sheepluva@users.noreply.github.com>
Mon, 25 May 2015 14:26:54 +0200
changeset 10958 4a1a3ba5ebaf
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Merge pull request #34 from CaF2/master Changed to continental supplies from the DLC, because its better :P

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

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