misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Sun, 15 Oct 2017 13:15:39 +0200
changeset 12704 c4ea9f8fb483
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Highlander: Mention the "max. 1 ammo per type" rule in mission panel

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

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