misc/coverity_model.c
author sheepluva
Sun, 23 Apr 2017 17:27:07 +0200
changeset 12312 83131d0e747b
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
clean up flake falling/rising code. this should fix issue #157

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

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