misc/coverity_model.c
author sheepluva
Sat, 15 Oct 2016 20:54:30 +0200
changeset 11880 d669f04f02d0
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;
}