misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Wed, 01 Nov 2017 22:02:52 +0100
changeset 12817 b35b6978baa4
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Add Lua problems to the troubleshooting section of INSTALL.md

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

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