misc/coverity_model.c
author koda
Tue, 02 Jun 2015 18:37:40 +0100
changeset 10976 56f07b52213a
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Allow skipping the bundle step after install on OSX

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

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