misc/coverity_model.c
author sheepluva
Mon, 24 Nov 2014 22:33:44 +0100
changeset 10548 28584bcb73a2
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
test case that spawns 2000 mines in a pit. run with ctest -R mines # only works if cmake was ran after pulling this commit

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

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