misc/coverity_model.c
author unc0rr
Sat, 26 Dec 2015 22:29:57 +0300
branchqmlfrontend
changeset 11462 33a0e3a14ddc
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Fix passing of ansistrings via ipc - Some work on getting drawn maps from network (missing zlib unpack)

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

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