misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Thu, 25 Jul 2019 19:18:48 +0200
changeset 15271 a0e425458694
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Default_es: Remove Coward.ogg This file was in English, but the voicepack must be in Spanish.

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

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