misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Mon, 19 Feb 2018 09:45:36 +0100
changeset 13032 91f23558c936
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Lua library Animate: StoppedGear now returns true if gear does not exist Fixes Lua error spam in ACF1 when Leaks a Lot drows

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

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