From 97dc89834b4ec170bce61f58c14539ea7749f36a Mon Sep 17 00:00:00 2001 From: deraadt Date: Tue, 5 Dec 1995 22:39:44 +0000 Subject: [PATCH] delete memcpy; it makes bootblocks larger without being needed --- sys/lib/libsa/bcopy.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/sys/lib/libsa/bcopy.c b/sys/lib/libsa/bcopy.c index 68d14b38a75..3cf86106a32 100644 --- a/sys/lib/libsa/bcopy.c +++ b/sys/lib/libsa/bcopy.c @@ -58,13 +58,3 @@ bcopy(s1, s2, n) while (n-- > 0) *t++ = *f++; } - -void * -memcpy(s1, s2, n) - void *s1; - const void *s2; - size_t n; -{ - bcopy(s2, s1, n); - return s1; -} -- 2.20.1