misc/coverity_model.c
author unc0rr
Sat, 27 Feb 2016 09:44:13 +0300
changeset 11577 bee3a2f8e117
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Finish implementation of ghost points served from server, not tested

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

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