misc/coverity_model.c
author unC0Rr
Wed, 11 May 2022 13:50:35 +0200
changeset 15849 ba12545effa0
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Ignore dist-newstyle folder

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

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