misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Sat, 16 May 2020 03:41:49 +0200
changeset 15566 909ef1f3ef19
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Hats webpage: Fix "other hats" section listing wrong hats

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

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