misc/coverity_model.c
author unC0Rr
Tue, 26 May 2015 11:59:46 +0300
changeset 10964 493bd837dc2e
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Make sure to have gstMoving flag cleared

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

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