misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Mon, 02 Oct 2017 23:08:12 +0200
changeset 12636 00b55c1424d1
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Update German translation (especially de.txt)

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

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