misc/coverity_model.c
author Marcin Mielniczuk <marmistrz.dev@zoho.eu>
Tue, 03 Jul 2018 22:37:15 +0300
changeset 13435 2e5a5eee8d80
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Update rand and log to the latest versions

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

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