misc/coverity_model.c
author unC0Rr
Tue, 28 Jan 2025 10:37:46 +0100
changeset 16072 a4cbc6926439
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Adopt newest version of rand crate - Rework fill_bytes() method to use full generated values

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

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