misc/coverity_model.c
author antonc27 <antonc27@mail.ru>
Sun, 07 Feb 2016 17:40:09 +0100
changeset 11536 edd6ea6b85a8
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- uTypes must be included for reference of gmtLandPreview which used for iOS build

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

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