misc/coverity_model.c
author nemo
Sat, 25 Nov 2017 09:40:43 -0500
changeset 12849 22cc3d82905a
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Should probably have gl context stuff in its own unit separate from store, but, don't close the gl context before anything that might still want to do gl operations

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

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