misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Tue, 29 Oct 2019 22:03:08 +0100
changeset 15494 55436712b5e9
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Rope Training: Add flower effects when player returns all the way to the start

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

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