misc/coverity_model.c
author antonc27 <antonc27@mail.ru>
Tue, 03 May 2016 01:13:41 +0200
changeset 11790 ac93cfc17365
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Pass also userPath to LoadLocaleWrapper TODO: Find a way to simplify all of this...

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

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