diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/cat.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -524,7 +524,7 @@ cat (inbuf, insize, outbuf, outsize, quote, /* Move the remaining bytes to the beginning of the buffer. */ - bcopy (wp, outbuf, bpout - wp); + memmove (outbuf, wp, bpout - wp); bpout = outbuf + (bpout - wp); } |