aboutsummaryrefslogtreecommitdiff
path: root/libiberty/strstr.c
diff options
context:
space:
mode:
Diffstat (limited to 'libiberty/strstr.c')
-rw-r--r--libiberty/strstr.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libiberty/strstr.c b/libiberty/strstr.c
index a059c7f..ff8abd2 100644
--- a/libiberty/strstr.c
+++ b/libiberty/strstr.c
@@ -21,8 +21,7 @@ length, the function returns @var{string}.
been validated to comply with it. -fnf */
char *
-strstr (s1, s2)
- char *s1, *s2;
+strstr (char *s1, char *s2)
{
register char *p = s1;
extern char *strchr ();