misc/coverity_model.c
author unc0rr
Mon, 20 Aug 2018 22:38:14 +0200
changeset 13672 8bd973ab9c9c
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Add checker dependencies to hedgewars-server.cabal - Update checker to work with .24

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

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