misc/coverity_model.c
author nemo
Tue, 18 Sep 2018 19:30:55 -0400
changeset 13789 a623657da787
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
restore old land hashes which in theory should not have changed in .24

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

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