diff --git a/lib/libc/string/strlcat.c b/lib/libc/string/strlcat.c index d14a70c46bfc..a6afd7dd75dd 100644 --- a/lib/libc/string/strlcat.c +++ b/lib/libc/string/strlcat.c @@ -1,4 +1,4 @@ -/* $NetBSD: strlcat.c,v 1.6 2000/11/24 16:19:05 itojun Exp $ */ +/* $NetBSD: strlcat.c,v 1.7 2001/01/03 14:33:02 lukem Exp $ */ /* from OpenBSD: strlcat.c,v 1.3 2000/11/24 11:10:02 itojun Exp */ /* @@ -30,7 +30,7 @@ #include #if defined(LIBC_SCCS) && !defined(lint) -__RCSID("$NetBSD: strlcat.c,v 1.6 2000/11/24 16:19:05 itojun Exp $"); +__RCSID("$NetBSD: strlcat.c,v 1.7 2001/01/03 14:33:02 lukem Exp $"); #endif /* LIBC_SCCS and not lint */ #include @@ -50,9 +50,9 @@ strlcat(dst, src, siz) const char *src; size_t siz; { - register char *d = dst; - register const char *s = src; - register size_t n = siz; + char *d = dst; + const char *s = src; + size_t n = siz; size_t dlen; _DIAGASSERT(dst != NULL); diff --git a/lib/libc/string/strlcpy.c b/lib/libc/string/strlcpy.c index 6d19a7324394..e7b9d880b7fe 100644 --- a/lib/libc/string/strlcpy.c +++ b/lib/libc/string/strlcpy.c @@ -1,4 +1,4 @@ -/* $NetBSD: strlcpy.c,v 1.5 1999/09/20 04:39:47 lukem Exp $ */ +/* $NetBSD: strlcpy.c,v 1.6 2001/01/03 14:33:02 lukem Exp $ */ /* from OpenBSD: strlcpy.c,v 1.4 1999/05/01 18:56:41 millert Exp */ /* @@ -30,7 +30,7 @@ #include #if defined(LIBC_SCCS) && !defined(lint) -__RCSID("$NetBSD: strlcpy.c,v 1.5 1999/09/20 04:39:47 lukem Exp $"); +__RCSID("$NetBSD: strlcpy.c,v 1.6 2001/01/03 14:33:02 lukem Exp $"); #endif /* LIBC_SCCS and not lint */ #include @@ -48,9 +48,9 @@ strlcpy(dst, src, siz) const char *src; size_t siz; { - register char *d = dst; - register const char *s = src; - register size_t n = siz; + char *d = dst; + const char *s = src; + size_t n = siz; _DIAGASSERT(dst != NULL); _DIAGASSERT(src != NULL); diff --git a/lib/libc/string/wcslcat.c b/lib/libc/string/wcslcat.c index f8167192dc01..a6d05e747b21 100644 --- a/lib/libc/string/wcslcat.c +++ b/lib/libc/string/wcslcat.c @@ -1,4 +1,4 @@ -/* $NetBSD: wcslcat.c,v 1.1 2000/12/23 23:14:36 itojun Exp $ */ +/* $NetBSD: wcslcat.c,v 1.2 2001/01/03 14:33:02 lukem Exp $ */ /* from OpenBSD: strlcat.c,v 1.3 2000/11/24 11:10:02 itojun Exp */ /* @@ -30,7 +30,7 @@ #include #if defined(LIBC_SCCS) && !defined(lint) -__RCSID("$NetBSD: wcslcat.c,v 1.1 2000/12/23 23:14:36 itojun Exp $"); +__RCSID("$NetBSD: wcslcat.c,v 1.2 2001/01/03 14:33:02 lukem Exp $"); #endif /* LIBC_SCCS and not lint */ #include @@ -50,9 +50,9 @@ wcslcat(dst, src, siz) const wchar_t *src; size_t siz; { - register wchar_t *d = dst; - register const wchar_t *s = src; - register size_t n = siz; + wchar_t *d = dst; + const wchar_t *s = src; + size_t n = siz; size_t dlen; _DIAGASSERT(dst != NULL); diff --git a/lib/libc/string/wcslcpy.c b/lib/libc/string/wcslcpy.c index 88e085157a50..92c857d056b7 100644 --- a/lib/libc/string/wcslcpy.c +++ b/lib/libc/string/wcslcpy.c @@ -1,4 +1,4 @@ -/* $NetBSD: wcslcpy.c,v 1.1 2000/12/23 23:14:36 itojun Exp $ */ +/* $NetBSD: wcslcpy.c,v 1.2 2001/01/03 14:33:02 lukem Exp $ */ /* from OpenBSD: strlcpy.c,v 1.4 1999/05/01 18:56:41 millert Exp */ /* @@ -30,7 +30,7 @@ #include #if defined(LIBC_SCCS) && !defined(lint) -__RCSID("$NetBSD: wcslcpy.c,v 1.1 2000/12/23 23:14:36 itojun Exp $"); +__RCSID("$NetBSD: wcslcpy.c,v 1.2 2001/01/03 14:33:02 lukem Exp $"); #endif /* LIBC_SCCS and not lint */ #include @@ -48,9 +48,9 @@ wcslcpy(dst, src, siz) const wchar_t *src; size_t siz; { - register wchar_t *d = dst; - register const wchar_t *s = src; - register size_t n = siz; + wchar_t *d = dst; + const wchar_t *s = src; + size_t n = siz; _DIAGASSERT(dst != NULL); _DIAGASSERT(src != NULL);