misc/coverity_model.c
author sheepluva
Tue, 03 Nov 2015 21:07:24 +0100
branch0.9.22
changeset 11276 f1103fd2cc5e
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
0.9.22 branch

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

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