misc/coverity_model.c
author sheepluva <sheepluva@users.noreply.github.com>
Mon, 04 May 2015 23:52:56 +0200
changeset 10923 8333ddf6ea48
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Merge pull request #32 from gunchleoc/master New gd (Scottish Gaelic) translation of main ts file.

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

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