misc/coverity_model.c
author alfadur
Sun, 12 Jul 2020 03:03:52 +0300
changeset 15723 4e65fd69f58c
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
don't delete shotgun shot after it has parted

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

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