misc/coverity_model.c
author antonc27 <antonc27@mail.ru>
Thu, 05 Nov 2015 21:54:19 +0100
branchios-revival
changeset 11308 92b023095153
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Update rus localization for 'About' screen - 'Info' button's color changed to yellow - Update Qt front-end 'About' with my credits

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

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