misc/coverity_model.c
author nemo
Tue, 01 Jan 2019 11:17:28 -0500
branch0.9.25
changeset 14513 666b31c58de8
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
From https://salsa.debian.org/games-team/hedgewars/blob/master/debian/patches/link-libatomic.patch

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

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