misc/coverity_model.c
author nemo
Wed, 24 Dec 2014 11:41:53 -0500
changeset 10712 89eaf51d0e9a
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Probably fixes issue #891 although the overall playability of the campaign, who knows, since invalid name was used in the add too

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

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