misc/coverity_model.c
author nemo
Wed, 23 May 2018 20:45:42 -0400
changeset 13404 3d6aae2ae698
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Allow freezing airmines because whyyy not

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

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