misc/coverity_model.c
author nemo
Wed, 18 Nov 2015 14:12:15 -0500
changeset 11417 c19f2387d24f
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Add a few more lua things to the changelog

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

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