misc/coverity_model.c
author unc0rr
Wed, 30 Jun 2021 23:06:54 +0200
changeset 15811 a855f32ab3ca
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Update hedgewars-network-protocol library with messages needed for checker - Use the library in hedgewars-checker

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

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