misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Thu, 08 Mar 2018 19:36:07 +0100
changeset 13125 c8c8f856e236
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
HedgeEditor: Clean up messy HWP overwrites - Remove all sounds - Move sticky mine, mine and dud mine images to custom sprites - Move crate preview outline to custom sprite

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

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