misc/coverity_model.c
author nemo
Tue, 09 Oct 2018 11:28:07 -0400
changeset 13883 0ce8aad17c24
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
IFDEF out missing function with FIXME, revert pas2c change in 0ecf77e203c0 as suggested by unc0rr, another string annotation

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

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