misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Fri, 06 May 2016 20:12:27 +0200
changeset 11819 7642955690bc
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Tweak sizes and icons of most footer buttons of frontend

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

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