misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Wed, 04 Oct 2017 15:28:32 +0200
changeset 12645 36a650c0a885
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Add test case to test if cake explodes in time when stuck in tight space See also: bug #194

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

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