misc/coverity_model.c
author nemo
Wed, 16 Nov 2016 12:26:26 -0500
changeset 11895 19cb0de79287
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Make sd-tint a theme variable so cophernue can tweak his sky tinting

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

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