misc/coverity_model.c
author alfadur
Tue, 27 Aug 2019 20:09:17 +0300
changeset 15388 d6b4586b271f
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
make sure component slice order corresponds to the type args

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

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