misc/coverity_model.c
author koda
Wed, 27 Apr 2016 01:12:37 -0400
changeset 11741 72f0c8a73080
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Set install dir for emscripten While not required, should help compatibility with older cmake versions.

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

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