• M
    Replace use of memmove() with a simple copy for portability. · d1714a57
    Mark Adler 提交于
    SunOS 4.1 doesn't have memmove(), and there may be others.  memcpy()
    should not be used for overlapping copies, so here a simple copy is
    implemented that works for the particular direction of the overlap,
    which is where the destination precedes the source.
    d1714a57
gzread.c 18.0 KB