misc/coverity_model.c
author nemo
Wed, 02 Sep 2015 11:55:37 -0400
changeset 11067 c632b47b8ff0
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Trying to get these scripts to behave properly, still WIP though.

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

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