misc/coverity_model.c
author koda
Tue, 02 Jun 2015 18:37:40 +0100
branch0.9.21
changeset 10762 a017ec64f675
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;
}