From: Jim Meyering Date: Sat, 28 Jan 1995 04:47:03 +0000 (+0000) Subject: (load_buffer): Use memcpy rather than bcopy. X-Git-Tag: textutils-1_12_1~319 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=45f162ad7af429616555057de02839c0dadc6ee4;p=thirdparty%2Fcoreutils.git (load_buffer): Use memcpy rather than bcopy. --- diff --git a/src/csplit.c b/src/csplit.c index a51ad8f3b5..6f0cb4daa1 100644 --- a/src/csplit.c +++ b/src/csplit.c @@ -586,7 +586,7 @@ load_buffer () if (hold_count) { if (p != hold_area) - bcopy (hold_area, p, hold_count); + memcpy (p, hold_area, hold_count); p += hold_count; b->bytes_used += hold_count; bytes_avail -= hold_count;