misc/coverity_model.c
author sheepluva
Tue, 24 Mar 2015 16:52:35 +0100
changeset 10870 5efea5942475
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
rendering tweaks cont.

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

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