misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Sat, 19 Nov 2016 15:03:16 +0100
changeset 11925 d7d7f3a07db9
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Add changelog entries for the timer color-coding and countdown sounds

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

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