misc/coverity_model.c
author sheepluva
Sat, 16 Jan 2016 19:11:21 +0100
changeset 11514 5d804405964d
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
fix script for resolving git commit id to hg commit id (github page format changed; hw hg repo location too)

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

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