misc/coverity_model.c
author sheepluva
Sat, 16 Jan 2016 19:29:28 +0100
changeset 11516 6873bd4d120c
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
recognize subdomains of hedgewars.org

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

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