misc/coverity_model.c
author unc0rr
Sun, 06 Dec 2015 20:35:58 +0300
branchqmlfrontend
changeset 11447 2572afe532af
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Don't send maze_size parameter when not needed, as it overwrites template_filter

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

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