misc/coverity_model.c
author KoBeWi <kobewi4e@gmail.com>
Sat, 15 Oct 2016 20:06:42 +0200
changeset 11873 7db5aef27e8d
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
support for alternate sound paths [this is allowing themes to override certain sound files; reviewed and committed by sheepluva, fixes pending]

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

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