misc/coverity_model.c
author sheepluva
Sat, 16 Jan 2016 19:50:38 +0100
changeset 11517 b3ee79e8e3b9
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
find hg revision even if github author name is not the same as hg author (kodabb vs koda)

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

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