summaryrefslogtreecommitdiff
path: root/lib/libc/string/bzero.c
diff options
context:
space:
mode:
authorperry <perry@NetBSD.org>1998-02-03 18:49:08 +0000
committerperry <perry@NetBSD.org>1998-02-03 18:49:08 +0000
commit741740203c87af80a4aeb5c36e06cd8e904cf03b (patch)
tree77f243a86baea58b21b47106fc7b64b900f53aef /lib/libc/string/bzero.c
parentc8bafd6265d904677e886f6dbd842f26424df1de (diff)
remove obsolete register declarations
Diffstat (limited to 'lib/libc/string/bzero.c')
-rw-r--r--lib/libc/string/bzero.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/string/bzero.c b/lib/libc/string/bzero.c
index 1b1b2515b17..753a27c6cc7 100644
--- a/lib/libc/string/bzero.c
+++ b/lib/libc/string/bzero.c
@@ -1,4 +1,4 @@
-/* $NetBSD: bzero.c,v 1.5 1997/07/13 20:24:13 christos Exp $ */
+/* $NetBSD: bzero.c,v 1.6 1998/02/03 18:49:12 perry Exp $ */
/*
* Copyright (c) 1987 Regents of the University of California.
@@ -38,7 +38,7 @@
#if 0
static char *sccsid = "@(#)bzero.c 5.7 (Berkeley) 2/24/91";
#else
-__RCSID("$NetBSD: bzero.c,v 1.5 1997/07/13 20:24:13 christos Exp $");
+__RCSID("$NetBSD: bzero.c,v 1.6 1998/02/03 18:49:12 perry Exp $");
#endif
#endif /* LIBC_SCCS and not lint */
@@ -54,9 +54,9 @@ __RCSID("$NetBSD: bzero.c,v 1.5 1997/07/13 20:24:13 christos Exp $");
void
bzero(b, length)
void *b;
- register size_t length;
+ size_t length;
{
- register char *p;
+ char *p;
for (p = b; length--;)
*p++ = '\0';