misc/coverity_model.c
author nemo
Sat, 19 Oct 2019 09:34:37 -0400
changeset 15478 ea8fce926e4d
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
256x256 png and xpm of hedgehog.svg

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

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