misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Thu, 22 Mar 2018 16:52:04 +0100
changeset 13267 48b23e6f26d9
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Add icons to background themes; allow to hide themes explicitly by adding “hidden” key to theme.cfg

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

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