misc/coverity_model.c
author sheepluva
Sun, 08 Apr 2018 00:52:22 +0200
changeset 13315 3546bb36c8fb
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
cleanup whitespaces, add braces to for loops also throw in a break for good measure

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

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