misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Fri, 20 Oct 2017 18:44:41 +0200
changeset 12715 f84849acda02
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Turn loc_gen.txt into an executable Shell script Still clunky and slow, however. :(

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

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