misc/coverity_model.c
author koda
Mon, 02 May 2016 23:28:58 -0400
changeset 11793 80fe306460b2
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Work around missing gl functions from emscripten headers

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

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