misc/coverity_model.c
author alfadur
Wed, 28 Aug 2019 23:06:34 +0300
changeset 15385 6e3e5be8b2e2
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
update hwphysics motion to use the new system

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

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