misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Tue, 24 Oct 2017 19:45:11 +0200
changeset 12757 0e425574bd5f
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Update README.md: Add game description, controls, getting started guide for n00bs, fix typos, reorganize sections

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

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