misc/coverity_model.c
author sheepluva
Sun, 23 Nov 2014 16:13:35 +0100
changeset 10540 de6ab85ac761
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
add translation for "New Account" and strip trailing whitespaces

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

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