misc/coverity_model.c
author alfadur
Sat, 16 Oct 2021 01:21:26 +0300
changeset 15820 b6379a7ed674
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
reduce blowtorch radius to avoid grabbing gears behind current🦔

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

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