misc/coverity_model.c
author unC0Rr
Mon, 03 Feb 2025 15:25:28 +0100
changeset 16082 669cdf697f16
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Simplify 'for' loop by keeping more information about iterator

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

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