misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Sat, 30 Apr 2016 20:55:16 +0200
changeset 11913 232b57a70aca
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Make the timer red when it is the get-away time

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

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