misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Sat, 08 Apr 2017 05:04:18 +0200
changeset 12191 322aaad4a93d
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Load screen: Move “LOADING” from image into text box So this message can be properly translated

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

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