misc/coverity_model.c
author koda
Tue, 03 May 2016 00:51:33 -0400
changeset 11794 64bbe89e59d6
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Compile uMatrix to c too when GL2 is requested

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

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