misc/coverity_model.c
author unc0rr
Mon, 02 Jan 2017 00:05:12 +0300
changeset 12127 36ac9c075d0d
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Use netbuf buffers for client connection stream - Read data from client

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

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