misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Sun, 11 Feb 2018 20:28:21 +0100
changeset 12974 f92e9b1df096
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net

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

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