misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Sun, 19 May 2019 21:14:53 +0200
changeset 15031 5d8068ee16fc
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Give a more accurate hedgehog limit estimate for small drawn maps

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

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