misc/coverity_model.c
author sheepluva
Wed, 27 Apr 2016 23:52:43 +0200
changeset 11751 20e0a72e0e2c
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
make hog fallback (flower-in-hole) positioning respect limits (e.g. used by gfDivideTeams)

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

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