misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Tue, 15 Nov 2016 00:17:31 +0100
changeset 11884 c6eafb6f2735
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Add WorldEdge to Lua API to expose/change world edge type

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

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