misc/coverity_model.c
author sheepluva
Wed, 04 Nov 2015 00:20:07 +0100
branch0.9.21
changeset 11284 0785ad226574
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
closing 0.9.21 branch

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

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