misc/coverity_model.c
author sheepluva
Sun, 01 May 2016 12:36:59 +0200
changeset 11784 b1bf4c93f7ce
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
changelog

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

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