misc/coverity_model.c
author antonc27 <antonc27@mail.ru>
Thu, 15 Mar 2018 23:59:20 +0100
branchios-develop
changeset 13229 01ab48b253ef
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Pause game when it goes background (do not show anymore annoying 'confirm quit')

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

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