misc/coverity_model.c
author Wuzzy <Wuzzy@disroot.org>
Wed, 28 Jun 2023 17:06:22 +0200
changeset 15966 605697b8947a
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
CS: Remove hog switch arrows on continent phase if switching gameflag is used

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

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