misc/coverity_model.c
author unc0rr
Mon, 11 May 2015 19:58:54 +0300
changeset 10941 6f1b2d0dacdf
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Take girder height into account (fix issue #908) - Fix off-by-2 error in girder placement - Some tweaks to allow for more girders placed

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

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