misc/coverity_model.c
author KoBeWi
Sun, 12 Nov 2017 17:10:44 +0100
changeset 12829 671243ac50c3
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Update pl.lua (>99% complete) A few strings have been removed because of empty translations of faulty format strings.

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

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