misc/coverity_model.c
author KoBeWi <kobewi4e@gmail.com>
Sat, 15 Oct 2016 13:10:16 +0200
changeset 11870 b801ff99e52c
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
support for multiple inland rectangles [reviewed, cleaned up and committed by sheepluva]

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

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