misc/coverity_model.c
author nemo
Tue, 24 Oct 2017 18:55:19 -0400
changeset 12759 df9d9d19406a
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
w is in pixels, so presumably this needs to be *4

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

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