diff options
author | Jim Meyering <jim@meyering.net> | 1996-06-11 17:19:31 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-06-11 17:19:31 +0000 |
commit | 9b647bea250faf31f6e8d1a9cbe1dd362de73218 (patch) | |
tree | dc7ca0aa5f21fa644c94fb8f94cf1f207a50a060 /intl/l10nflist.c | |
parent | f62de6194aad3ace0c12b414f05486338491c6f6 (diff) | |
download | idutils-9b647bea250faf31f6e8d1a9cbe1dd362de73218.tar.gz idutils-9b647bea250faf31f6e8d1a9cbe1dd362de73218.tar.bz2 idutils-9b647bea250faf31f6e8d1a9cbe1dd362de73218.zip |
merge with 0.10.17
Diffstat (limited to 'intl/l10nflist.c')
-rw-r--r-- | intl/l10nflist.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/intl/l10nflist.c b/intl/l10nflist.c index 4f955a9..dc763cc 100644 --- a/intl/l10nflist.c +++ b/intl/l10nflist.c @@ -21,7 +21,8 @@ Boston, MA 02111-1307, USA. */ # include <config.h> #endif -#if defined _LIBC && (defined __ARGZ_COUNT || defined __ARGZ_STRINGIFY) +#if defined _LIBC || \ + defined __ARGZ_COUNT || defined __ARGZ_STRINGIFY || defined __ARGZ_NEXT # include <argz.h> #endif #include <ctype.h> @@ -31,6 +32,9 @@ Boston, MA 02111-1307, USA. */ #endif #if defined HAVE_STRING_H || defined _LIBC +# ifndef _GNU_SOURCE +# define _GNU_SOURCE 1 +# endif # include <string.h> #else # include <strings.h> |