misc/coverity_model.c
author nemo
Mon, 20 Mar 2017 08:58:30 -0400
changeset 12155 bbefbd1a3b0a
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
sanity cutoff for splash sound

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

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