misc/coverity_model.c
author sheepluva
Tue, 06 Jan 2015 16:38:39 +0100
changeset 10782 6feaf9a863dd
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
merge git head

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

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