misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Tue, 10 Oct 2017 16:13:44 +0200
changeset 12682 b7fd7ab8ddf9
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Construction Mode: Fix Lua error spam when using time box with filters on map

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

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