misc/coverity_model.c
author sheepluva
Tue, 12 Jan 2016 23:16:31 +0100
changeset 11504 df336149cc2b
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
travis: don't skip joins because that would require #hedgewars to allow messages from outside the channel

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

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