misc/coverity_model.c
author nemo
Wed, 28 Oct 2015 10:01:31 -0400
changeset 11251 66796cd627d8
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
few more missing nil checks in crate spawn

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

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