misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Mon, 02 Oct 2017 18:12:23 +0200 (2017-10-02)
changeset 12632 888032b2fda4
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Make multipy sign in QTfrondend translatable and update hedgewars_en.ts
void fpcrtl_halt(int num) {
    __coverity_panic__();
}

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