From 45f162ad7af429616555057de02839c0dadc6ee4 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 28 Jan 1995 04:47:03 +0000 Subject: [PATCH] (load_buffer): Use memcpy rather than bcopy. --- src/csplit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.3