misc/coverity_model.c
author unc0rr
Mon, 29 Oct 2018 23:06:18 +0100
changeset 14050 4b40bdd214df
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions

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

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