misc/coverity_model.c
author sheepluva
Tue, 29 Mar 2016 08:52:45 +0200
changeset 11625 9d3e32623567
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
change all URLs of feedback dialog to use https

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

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