misc/coverity_model.c
author nemo
Sun, 01 Nov 2015 15:06:55 -0500
changeset 11266 31e0e38e703c
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Make camera refocus less aggressive. Only if there's a camera target already.

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

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