summaryrefslogtreecommitdiffstats
path: root/compat/strstr.c
diff options
context:
space:
mode:
Diffstat (limited to 'compat/strstr.c')
-rw-r--r--compat/strstr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/compat/strstr.c b/compat/strstr.c
index e3b9b8d..206dca9 100644
--- a/compat/strstr.c
+++ b/compat/strstr.c
@@ -36,10 +36,10 @@
char *
strstr(
- register char *string, /* String to search. */
+ char *string, /* String to search. */
char *substring) /* Substring to try to find in string. */
{
- register char *a, *b;
+ char *a, *b;
/*
* First scan quickly through the two strings looking for a