misc/coverity_model.c
author unc0rr
Tue, 11 Sep 2018 21:16:27 +0200
branchqmlfrontend
changeset 13772 5c0ea888c926
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Make rendering work

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

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