misc/coverity_model.c
author sheepluva
Tue, 25 Nov 2014 15:20:06 +0100
changeset 10550 825991c25319
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
move failing test into "todo" folder so that it can be excluded with ctest -E '^todo/'

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

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