misc/coverity_model.c
author alfadur
Tue, 14 Jan 2020 01:40:23 +0300
changeset 15544 77551d5e0a3b
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
send 🦔 on round end

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

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