misc/coverity_model.c
author mikade <redgrinner@gmail.com>
Sat, 16 May 2015 19:08:45 +0900
changeset 10947 bb5f9dc79a6b
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Add two new maps, improve an old one Fix a few maps so they can be converted into HWMAP format

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

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