From e6228399a12e9a92be1801283dd66ab3909ce0c2 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 17 Nov 2000 08:19:01 +0000 Subject: [PATCH] Update from GNU libc. --- lib/strstr.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/strstr.c b/lib/strstr.c index 7709d8464a..c41e90349f 100644 --- a/lib/strstr.c +++ b/lib/strstr.c @@ -28,11 +28,15 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ # include #endif -#include +#if defined _LIBC || defined HAVE_STRING_H +# include +#endif #include typedef unsigned chartype; +#undef strstr + char * strstr (const char *phaystack, const char *pneedle) { @@ -105,7 +109,7 @@ jin: a = *++haystack; } while (*rhaystack == a); - needle = rneedle; /* took the register-poor aproach */ + needle = rneedle; /* took the register-poor approach */ if (a == '\0') break; -- 2.30.2