misc/coverity_model.c
author nemo
Mon, 14 Jan 2019 15:01:43 -0500
branch0.9.25
changeset 14609 e27f1d1c1da9
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
aaagh can't just move delete like that due to our RNG scrambling... reverting on branch. we'll just have to take our chances w/ the bad code

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

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