misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Fri, 06 May 2016 19:23:26 +0200
changeset 11818 b421923c2577
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Neatly align all the bottom buttons on the same height

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

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