misc/coverity_model.c
author unc0rr
Wed, 24 Oct 2018 00:08:23 +0200
changeset 13953 e98e2fc556a7
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Create replay file, run engine, result from it and send it to the server. Not implemented: filtering of engine output.

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

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