misc/coverity_model.c
author unc0rr
Wed, 24 Dec 2014 23:17:14 +0300
changeset 10718 40dda24ee145
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
More complete fix for FULLMAPCONFIG message, also add new known protocol versions

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

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