misc/coverity_model.c
author alfadur <mail@none>
Sat, 02 Feb 2019 15:06:39 +0300
changeset 14671 455865ccd36c
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Server action refactoring part 2 of N

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

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