misc/coverity_model.c
author alfadur
Mon, 28 Oct 2019 23:17:35 +0300
changeset 15497 395be40faa51
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
move start_game into the server

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

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