misc/coverity_model.c
author caf2 <florian.evaldsson@telia.com>
Mon, 25 May 2015 13:53:12 +0200
changeset 10956 80c3314f8123
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Changed to continental supplies from the DLC, because its better :P

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

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