misc/coverity_model.c
author KoBeWi
Thu, 08 Feb 2018 09:14:20 +0100
changeset 12923 305f3667af20
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix how scheme files behave

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

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