misc/coverity_model.c
author antonc27 <antonc27@mail.ru>
Sun, 20 Sep 2015 02:56:33 +0200
branchios-revival
changeset 11189 0fdef687de65
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Weapon and scheme plist's names(which passed to engine) must contain spaces, not underscores

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

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