misc/coverity_model.c
author nemo
Sun, 25 Jan 2015 16:10:20 -0500
changeset 10809 bb2e4e9944f7
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Add generic getter/setter for a bunch of more obscure gear structure values

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

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