misc/coverity_model.c
author sheepluva
Sat, 24 Oct 2015 00:21:15 +0200
changeset 11236 413714b915d2
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
fixed: poison clouds could bounce

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

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