misc/coverity_model.c
author nemo
Mon, 17 Aug 2015 10:56:24 -0400
changeset 11051 3996500fd1e5
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
just some indentation tweaks to help me read this while looking for possible causes of the iOS crasher

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

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