misc/coverity_model.c
author sheepluva
Sat, 22 Nov 2014 04:15:16 +0100
changeset 10525 019b4fbb21d4
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
tomato hat

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

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