misc/coverity_model.c
author alfadur
Fri, 02 Nov 2018 23:33:22 +0300
changeset 14120 7845beb87cb5
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
add an existing template to the theme editor

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

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