misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Tue, 24 Oct 2017 02:39:00 +0200
changeset 12747 d3dad8de4aca
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Changelog: Add 0.9.23 highlights, change headers, reorganize 0.9.23 engine updates, fix typos, mention some features

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

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