misc/coverity_model.c
author alfadur
Mon, 10 Sep 2018 23:31:44 +0300
changeset 13807 24fe56d3c6a2
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
improve error handling for TLS handshake

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

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