misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Wed, 07 Mar 2018 13:48:51 +0100
changeset 13088 2b5314cc356c
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Lua: Rename global variable “L” to “LOCALE” Srsly, WTF? If we have to use global variables, at least give them descriptive names.

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

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