misc/coverity_model.c
author antonc27 <antonc27@mail.ru>
Thu, 15 Oct 2015 20:36:08 +0200
branchios-revival
changeset 11208 89f6c8cf60c8
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Timer button added to mobile touch controls

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

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