misc/coverity_model.c
author unc0rr
Tue, 01 Jan 2019 02:25:18 +0100
changeset 14507 184df3900ec4
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Bots activate extra time if needed - Refactor work with forecast of time needed to perform planned actions (ticks variable)

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

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