misc/coverity_model.c
author unc0rr
Wed, 18 Nov 2015 22:18:39 +0300
branchqmlfrontend
changeset 11418 ffff8a0d1a76
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Implement processing net commands in the main thread

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

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