misc/coverity_model.c
author unC0Rr
Mon, 02 Dec 2024 17:36:44 +0100
branchtransitional_engine
changeset 16045 58a2d806fc47
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Tweak the rest of map templates

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

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