misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Mon, 23 Oct 2017 22:45:35 +0200
changeset 12749 058a5d373e4a
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Make air mines follow hedgehogs across wrap world edge

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

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