misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Mon, 23 Oct 2017 02:52:01 +0200
changeset 12738 49c45424a333
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Rope knock challenge: Add names of developers and Shoppa tournament players who ranked 1st/2nd/3rd The string freeze is maintained. The hog names are not localized. The string "points" is already in stub.lua.

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

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