misc/coverity_model.c
author antonc27 <antonc27@mail.ru>
Wed, 04 Nov 2015 06:17:31 +0100
branchios-revival
changeset 11291 6b6d96077395
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Refactoring for SingleSchemeViewController: checkValueString macro changed to helper method

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

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