misc/coverity_model.c
author sheepluva
Fri, 14 Oct 2016 23:25:51 +0200
changeset 11869 72b8c41b3f9c
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
update Changelog

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

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