misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Wed, 05 Apr 2017 18:23:10 +0200
changeset 12167 1ce6ee2525db
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Simplify the background gradient of Beach theme, fixes ugly “stripe” at borders

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

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