misc/coverity_model.c
author Anton Malmygin <antonc27@mail.ru>
Thu, 16 May 2019 21:26:27 +0200
changeset 14992 9719a998670b
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Merge pull request #63 from hedgewars/ci-patch-osx-server Update hedgewars-server.cabal

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

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