misc/coverity_model.c
author nemo
Tue, 26 Jun 2018 23:20:28 -0400
changeset 13425 50f852e7ad82
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
neglected dep update from r87a6cad20c90: that rev also forces nightly rust due to https://github.com/rust-lang/rust/issues/23121

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

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