misc/coverity_model.c
author unc0rr
Sat, 12 Dec 2015 23:42:40 +0300
branchqmlfrontend
changeset 11453 e7c7ca0c1556
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Also send config in network game

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

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