misc/coverity_model.c
author alfadur
Wed, 15 May 2019 18:43:42 +0300
changeset 14956 225839af5272
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
free gear textures to avoid log warnings

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

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