misc/coverity_model.c
author antonc27 <antonc27@mail.ru>
Sat, 08 Aug 2015 22:52:24 +0200
branchios-revival
changeset 11095 59fdc1ea1a4d
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Fix for "error: invalid abbreviation code [115] for DIE at" More info here: http://forum.unity3d.com/threads/error-in-lastest-xcode.233591/ Note: But in this case we are not be able to read crash reports without dSYM ! So, this need to be improved

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

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