From: Jim Meyering Date: Fri, 17 Nov 2000 08:19:01 +0000 (+0000) Subject: Update from GNU libc. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e6228399a12e9a92be1801283dd66ab3909ce0c2;p=pspp Update from GNU libc. --- 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;