misc/coverity_model.c
author unc0rr
Mon, 23 Jan 2017 23:43:29 +0300
changeset 12142 4d7d41be1993
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Start refactoring path from getting message from client to reacting to it

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

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