misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Tue, 03 Oct 2017 01:27:17 +0200
changeset 12637 317eb3210f7c
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Add 6 hats from the hat thread, the TheMadCharles' barrelhider hat (CC BY 3.0) and 12 hairless hat variants

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

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