misc/coverity_model.c
author sheepluva
Fri, 05 Dec 2014 15:30:34 +0100
changeset 10631 3d164350cc48
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
make BasketballField available as regular map. maybe should make it destructable when not in mission mode *shrugs*

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

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