misc/coverity_model.c
author sheepluva
Sun, 23 Nov 2014 15:40:13 +0100
changeset 10537 7475f81a9b2e
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
this string was untranslatable. thanks to siilimestari for pointing that out

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

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