diff options
author | Jim Meyering <jim@meyering.net> | 2000-11-17 08:19:01 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-11-17 08:19:01 +0000 |
commit | e6228399a12e9a92be1801283dd66ab3909ce0c2 (patch) | |
tree | 74491f01d94c058056cfe1a97acb0a659d3040d8 /lib/strstr.c | |
parent | a34dfa916ca812397a97f6453d96923ede771daa (diff) | |
download | gnulib-e6228399a12e9a92be1801283dd66ab3909ce0c2.tar.gz |
Update from GNU libc.
Diffstat (limited to 'lib/strstr.c')
-rw-r--r-- | lib/strstr.c | 8 |
1 files 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 <config.h> #endif -#include <string.h> +#if defined _LIBC || defined HAVE_STRING_H +# include <string.h> +#endif #include <sys/types.h> 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; |