misc/coverity_model.c
author sheepluva
Wed, 26 Nov 2014 14:20:53 +0100
changeset 10552 15d1e24a8c72
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
move fixed test case out of 'todo'

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

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