misc/coverity_model.c
author sheepluva
Wed, 07 Oct 2015 23:20:31 +0200
changeset 11201 9301550d2566
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
TrophyRace: fix nil error warning, caused by needlessly re-retrieving the name of the best hedgehog (which could be dead at that point)

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

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