misc/coverity_model.c
author unc0rr
Tue, 13 Jan 2015 23:37:07 +0300
changeset 10786 712283ed86e0
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Implement /newseed and /hedgehogs commands. Only tested for building.

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

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