misc/coverity_model.c
author alfadur
Thu, 08 Mar 2018 15:01:18 -0500
changeset 13124 1e39b8749072
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
separated the server logic from all the async io mess.

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

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