misc/coverity_model.c
author sheepluva
Wed, 25 Mar 2015 20:30:52 +0100
changeset 10874 059a6492176e
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
allow gear specific data (with gear type specific type). applied to cake

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

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