misc/coverity_model.c
author Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
Mon, 10 Jul 2017 14:58:36 +0200
changeset 12436 1ae6b6f10677
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
travis: move to trusty environment

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

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