misc/coverity_model.c
author unC0Rr
Mon, 17 Feb 2025 16:37:59 +0100
branchqmlrenderer
changeset 16089 02304ad06381
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Add TiledImageItem and a scene that represents hedgewars map

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

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