misc/coverity_model.c
author alfadur
Thu, 18 Oct 2018 07:27:14 +0300
changeset 13961 1c30793b1cea
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
put back land2d.map accidentally replaced by testing code

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

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