misc/coverity_model.c
author sheepluva
Sun, 27 Nov 2016 13:08:12 +0100
changeset 12095 e1bca1ebbad9
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
fix problem with pas2c build. please don't use "and not xyz", use "and (not xyz)"

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

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