misc/coverity_model.c
author nemo
Wed, 18 Apr 2018 10:30:27 -0400
changeset 13334 271123ac613d
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Added tag 0.9.24.1-release for changeset ea98a45452e5

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

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