misc/coverity_model.c
author sheepluva
Tue, 26 Apr 2016 20:51:13 +0200
changeset 11733 67049c8dedd1
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
make construction mode work with fort mode without mixing up clans and forts

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

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