misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Sat, 20 Apr 2019 05:39:57 +0200
changeset 14820 183677a07c8d
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Separate Yoohoo.ogg into "Yoohoo" voice and kiss sound Sound has been separated with mp3splt, so no quality loss

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

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