misc/coverity_model.c
author Wuzzy <Wuzzy@disroot.org>
Fri, 12 May 2023 23:15:01 +0200
changeset 15952 28b692ef6f15
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix CMake warning for position of cmake version

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

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