misc/coverity_model.c
author antonc27 <antonc27@mail.ru>
Fri, 19 Feb 2016 00:07:59 +0100
changeset 11555 b96080df19d0
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Send also some seed when loading missions on iOS (same behavior as on desktop)

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

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