misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Mon, 01 Apr 2019 19:16:55 +0200
changeset 14738 c760a2939b9c
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Hedgehogs: Move setting of random pos to chAddHH This fixes a problem that in missions, all hedgehogs start with Pos=0

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

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