misc/coverity_model.c
author sheepluva
Wed, 27 Apr 2016 00:04:37 +0200
changeset 11736 e9481c5a130b
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Lua-API - GetClanColor: Verify argument and display error message on fail (instead of engine crash)

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

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