misc/coverity_model.c
author sheepluva
Wed, 26 May 2021 16:32:43 -0400
changeset 15806 823cf18be1fc
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Hedgewars lobby to IRC proxy

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

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