misc/coverity_model.c
author sheepluva
Sun, 23 Nov 2014 03:41:37 +0100
changeset 10533 57b4d411f77d
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
fix some indentation

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

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