misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Tue, 07 May 2019 13:56:11 +0200
changeset 14895 d4a19bf6687e
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix incorrect handling of slow/precise volume change when it's not your turn

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

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