misc/coverity_model.c
author unc0rr
Sat, 01 Aug 2015 00:09:59 +0300
changeset 11032 6aa31d7b1fa5
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Use helper function instead of ton of copypasta

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

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