misc/coverity_model.c
author antonc27 <antonc27@mail.ru>
Sun, 07 Feb 2016 18:29:34 +0100
changeset 11542 de40095f3327
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- ifdef to avoid compiler warning

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

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