# HG changeset patch # User Ralf Wildenhues # Date 1169916559 0 # Node ID db317066258256c82f6eaafaf650fb3c3ff7e379 # Parent 6b61aba763435ee29267f360a180cc3c2d64d06a Sync from Libtool. * lib/argz.c: Do not include strings.h nor memory.h, include string.h unconditionally. Patch by Simon Josefsson. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-01-27 Ralf Wildenhues + + Sync from Libtool. + * lib/argz.c: Do not include strings.h nor memory.h, include + string.h unconditionally. Patch by Simon Josefsson. + 2007-01-27 Bruno Haible * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted diff --git a/lib/argz.c b/lib/argz.c --- a/lib/argz.c +++ b/lib/argz.c @@ -32,15 +32,7 @@ #include #include #include - -#if defined(HAVE_STRING_H) -# include -#elif defined(HAVE_STRINGS_H) -# include -#endif -#if defined(HAVE_MEMORY_H) -# include -#endif +#include #define EOS_CHAR '\0'