misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Sun, 09 Apr 2017 20:54:33 +0200
changeset 12212 2de020695c20
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Add rubber duck to (Balanced) Random Weapon, Construction Mode, HedgeEditor

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

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