misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Wed, 04 Oct 2017 15:37:42 +0200
changeset 12641 f30b70976577
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix cake taking >200s to explode when it's completely stuck and can't move (bug #194)

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

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