misc/coverity_model.c
author nemo
Tue, 13 Mar 2018 10:02:01 -0400
branchqt5transition
changeset 13178 b4f48e7a4953
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
seems to help styling some - some CSS tweaks may still be needed - lobby for example

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

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