misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Fri, 11 Sep 2015 03:50:32 +0200
changeset 11640 4865e715fb49
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Hedge Editor: Also allow to set health of barrels and health crates in Health Modification Mode

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

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