misc/coverity_model.c
author unC0Rr
Tue, 09 Feb 2016 14:40:06 +0300
changeset 11539 c22d292e7266
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix possible crashes/hangs due to recent changes

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

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