misc/coverity_model.c
author unc0rr
Thu, 18 Oct 2018 22:45:14 +0200
changeset 13944 4162ea9ae333
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Use integral-geometry iterators to implement Land2D::draw_thick_line, remove no longer unused functions from Land2D

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

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