misc/coverity_model.c
author nemo
Sun, 15 Mar 2015 16:14:13 -0400
changeset 10848 231d3e3d3267
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Allow rope tinting

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

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