misc/coverity_model.c
author antonc27 <antonc27@mail.ru>
Wed, 21 Oct 2015 21:58:50 +0200
branchios-revival
changeset 11223 93bc68aa41d3
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Workaround for team's name with spaces in StatsPage

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

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