misc/coverity_model.c
author sheepluva
Tue, 15 May 2018 17:05:40 +0200
branchui-scaling
changeset 13386 72bbccf9a715
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
fix some accidental code corruption caused by my last commit

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

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