misc/coverity_model.c
author nemo
Tue, 21 Jun 2016 18:02:46 -0400
changeset 11836 1d41f297b3d3
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
bit of a start on HDPI monitor support. Fonts.

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

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