misc/coverity_model.c
author unc0rr
Tue, 29 Mar 2016 22:00:34 +0300
changeset 11631 b3db79b56f28
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Pass paths to initModule of uPhysFSLayer (as in 4be6cd55f1cf from qmlfrontend branch)

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

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