misc/coverity_model.c
author antonc27 <antonc27@mail.ru>
Fri, 18 Sep 2015 04:33:37 +0200
branchios-revival
changeset 11182 55f20efae2e4
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Fix for consequent selection of same hat for all hogs in settings - Small refactoring of HogHatViewController

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

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