misc/coverity_model.c
author sheepluva
Sun, 15 Nov 2015 14:18:59 +0100
changeset 11385 4bf720dcef01
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
this should fix travis build

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

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