misc/coverity_model.c
author yuenfu
Mon, 16 Nov 2015 15:48:37 -0500
changeset 11404 484d197539f2
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
a submitted taiwanese translation. cursory review in google translate. there were a few keys that had translations removed, perhaps due to the english being better suited.

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

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