misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Thu, 11 Jul 2019 06:24:03 +0200
changeset 15251 4576e41c0692
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Add air plane underwater sound and add water splashes

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

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