misc/coverity_model.c
author antonc27 <antonc27@mail.ru>
Wed, 14 Mar 2018 00:46:20 +0100
branchios-develop
changeset 13192 d6aea85111c7
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Fix missions regression: presentation of list is good, still problem with path during launching

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

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