misc/coverity_model.c
author alfadur <mail@none>
Sat, 21 Dec 2019 23:33:50 +0300
changeset 15519 b3157d218ae2
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
disallow mutable clients to leave the server

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

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