misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Sun, 12 May 2019 03:27:43 +0200
changeset 14924 e28ff0f1aca2
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix laser sight not working when it starts out of map bounds (bug #432)

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

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