misc/coverity_model.c
author unc0rr
Wed, 07 Nov 2018 22:04:17 +0100
changeset 14166 7d3b94cdc3c4
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Move hedgewars-engine into lib-hedgewars-engine - Add command-line hedgewars-engine utility to use engine as standalone app

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

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