misc/coverity_model.c
author unc0rr
Mon, 06 Nov 2017 22:26:54 +0100
changeset 12824 c75781937859
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Update .pro file - Rethink logic of TCPBase, fixes bug with failing to receive all bytes from engine when process end signal is received before tcp disconnect

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

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