misc/coverity_model.c
author nemo
Sun, 15 Mar 2015 22:01:10 -0400
changeset 10856 d080b8d4c114
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.

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

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