misc/coverity_model.c
author nemo
Wed, 19 Jun 2019 22:36:11 -0400
changeset 15188 7ae8ec7a9a8e
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
consistent indentation with rest of unit. was just to help me read this block

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

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