summaryrefslogtreecommitdiffstats
path: root/lib/libstand/strcasecmp.c
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2002-03-21 23:39:28 +0000
committerobrien <obrien@FreeBSD.org>2002-03-21 23:39:28 +0000
commit084b4588f24346b3d369eaf49193461c380e8521 (patch)
tree1cbfa8bb28a9bf0d0b93ca61ac5323ef95e4c7f7 /lib/libstand/strcasecmp.c
parent454845084c112df969ca14adced4fd6c1d7305b6 (diff)
downloadFreeBSD-src-084b4588f24346b3d369eaf49193461c380e8521.zip
FreeBSD-src-084b4588f24346b3d369eaf49193461c380e8521.tar.gz
Remove 'register' keyword.
Diffstat (limited to 'lib/libstand/strcasecmp.c')
-rw-r--r--lib/libstand/strcasecmp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libstand/strcasecmp.c b/lib/libstand/strcasecmp.c
index 05b6c36..9eb8350 100644
--- a/lib/libstand/strcasecmp.c
+++ b/lib/libstand/strcasecmp.c
@@ -46,7 +46,7 @@ int
strcasecmp(s1, s2)
const char *s1, *s2;
{
- register const u_char
+ const u_char
*us1 = (const u_char *)s1,
*us2 = (const u_char *)s2;
@@ -59,10 +59,10 @@ strcasecmp(s1, s2)
int
strncasecmp(s1, s2, n)
const char *s1, *s2;
- register size_t n;
+ size_t n;
{
if (n != 0) {
- register const u_char
+ const u_char
*us1 = (const u_char *)s1,
*us2 = (const u_char *)s2;
OpenPOWER on IntegriCloud