misc/coverity_model.c
author sheepluva
Tue, 03 Nov 2015 23:33:32 +0100
changeset 11283 a3f3fc9af429
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
merge changelog changes of 0.9.22 into default

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

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