misc/coverity_model.c
author alfadur
Sun, 04 Nov 2018 04:43:30 +0300
changeset 14127 0c5b9cfda9ab
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
add a higher level map generation lib to load yaml templates into somewhere

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

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