diff options
author | 1995-12-05 22:39:44 +0000 | |
---|---|---|
committer | 1995-12-05 22:39:44 +0000 | |
commit | 97dc89834b4ec170bce61f58c14539ea7749f36a (patch) | |
tree | ce4e97c914200a3da77711181c4ef0a821403354 /sys | |
parent | working .cvsignore files (diff) | |
download | wireguard-openbsd-97dc89834b4ec170bce61f58c14539ea7749f36a.tar.xz wireguard-openbsd-97dc89834b4ec170bce61f58c14539ea7749f36a.zip |
delete memcpy; it makes bootblocks larger without being needed
Diffstat (limited to 'sys')
-rw-r--r-- | sys/lib/libsa/bcopy.c | 10 |
1 files changed, 0 insertions, 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; -} |