From: deraadt Date: Tue, 5 Dec 1995 22:39:44 +0000 (+0000) Subject: delete memcpy; it makes bootblocks larger without being needed X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=97dc89834b4ec170bce61f58c14539ea7749f36a;p=openbsd delete memcpy; it makes bootblocks larger without being needed --- 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; -}