summaryrefslogtreecommitdiffstats
path: root/lib/libstand/strcasecmp.c
diff options
context:
space:
mode:
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