misc/coverity_model.c
author unc0rr
Tue, 02 Jan 2018 23:45:18 +0100
branchqmlfrontend
changeset 12876 b544bbbd0696
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Break engine completely and make it render in frontend window (no actual rendering yet, just white screen)

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

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