misc/coverity_model.c
author sheepluva
Sat, 06 Jun 2015 23:57:12 +0200
changeset 10987 0a28b2e0b541
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
fix flower grave

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

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