misc/coverity_model.c
author sheepluva
Sun, 23 Apr 2017 22:21:41 +0200
changeset 12319 a57243490831
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Jungle Theme: allow flower object to go across gaps

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

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