misc/coverity_model.c
author unc0rr
Wed, 02 May 2018 23:07:41 +0200
changeset 13358 a79c1206bacd
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Call GetNext twice as many times to distribute seed across the whole buffer even for single byte seeds

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

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