misc/coverity_model.c
author sheepluva
Fri, 11 Sep 2015 08:15:17 +0200
changeset 11156 efea685933ae
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
fix pas2c build, it was broken in the long long ago ( 97f9a25024e6 )

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

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