misc/coverity_model.c
author sheepluva
Sun, 18 Jan 2015 15:36:36 +0100
changeset 10795 5672d43e8d88
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
fix pas2c (airbomb code: "not" statement in boolean expression was without parentheses)

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

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