misc/coverity_model.c
author sheepluva
Tue, 03 May 2016 19:06:09 +0200
changeset 11799 bb745219d882
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
small code cleanup/comment

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

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