misc/coverity_model.c
author unc0rr
Wed, 17 Oct 2018 22:58:21 +0200
changeset 13936 78c798d655ad
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Make use of LinePoints in Land2D::draw_line

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

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