misc/coverity_model.c
author unC0Rr
Wed, 04 Jan 2023 10:40:40 +0100
branchtransitional_engine
changeset 15903 230dc46487ea
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Update mapgen to take into account actual values for 'zero' and 'basic' colors

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

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