misc/coverity_model.c
author nemo
Sat, 29 Nov 2014 14:57:07 -0500
changeset 10579 2effda40c3b2
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Move cake FollowGear to Attack like most others, remove the gmAttack clearing which is also done in Attack.

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

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