misc/coverity_model.c
author antonc27 <antonc27@mail.ru>
Sun, 06 Sep 2015 03:17:22 +0200
branchios-revival
changeset 11145 1c89970c7f15
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Restyle of 'Simple' and 'Missions' buttons at Main screen

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

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