misc/coverity_model.c
author unc0rr
Tue, 03 May 2016 19:17:30 +0300
changeset 11803 984f9c76146d
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
I heard we switched to physfs

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

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