misc/coverity_model.c
author sheepluva
Wed, 13 Jan 2016 16:19:50 +0100
changeset 11506 24bef86e3f3a
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
add some dust effect to rolling/sliding hedgehogs

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

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