misc/coverity_model.c
author sheepluva
Wed, 11 Nov 2015 21:59:06 +0100
branchsdl2transition
changeset 11367 a91c4c4fd85c
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
add pchar casts to make pas2c happy

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

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