misc/coverity_model.c
author nemo
Mon, 15 Oct 2018 13:08:29 -0400
changeset 13920 7173b702e8db
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
tag both as overloadable - seems to satisfy clang 3.4

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

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