misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Wed, 03 May 2017 03:54:18 +0200
changeset 12393 d3a9ffdc8b85
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Complete the strings in hedgewars_en.ts (mostly to fix plural forms)

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

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