misc/coverity_model.c
author sheepluva
Wed, 10 Dec 2014 22:33:09 +0100
changeset 10649 d83897fed816
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
small shell script that accepts hedgewars git revisions as parameters and will try to find the respective mercurial revision

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

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