misc/coverity_model.c
author unc0rr
Tue, 01 Dec 2015 23:40:38 +0300
branchqmlfrontend
changeset 11438 1a6148b4de3b
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Rename uFLData to uFLThemes

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

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