summaryrefslogtreecommitdiff
path: root/lib/strstr.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/strstr.c')
-rw-r--r--lib/strstr.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/strstr.c b/lib/strstr.c
index cdee62117..b16799a2e 100644
--- a/lib/strstr.c
+++ b/lib/strstr.c
@@ -30,9 +30,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
typedef unsigned chartype;
char *
-strstr (phaystack, pneedle)
- const char *phaystack;
- const char *pneedle;
+strstr (const char *phaystack, const char *pneedle)
{
register const unsigned char *haystack, *needle;
register chartype b, c;