diff options
author | Roland McGrath <roland@gnu.org> | 1996-06-04 06:48:18 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-06-04 06:48:18 +0000 |
commit | fa00327fbf80bd0928c0c4babc6680ff1c9f3584 (patch) | |
tree | 1d8ce640f7a153abbe2b19e7634a3b7a3e64aca9 /intl/dcgettext.c | |
parent | bf18dbd7faa07a9dd800a8e842dd8eedc71ed5d9 (diff) | |
download | glibc-fa00327fbf80bd0928c0c4babc6680ff1c9f3584.tar glibc-fa00327fbf80bd0928c0c4babc6680ff1c9f3584.tar.gz glibc-fa00327fbf80bd0928c0c4babc6680ff1c9f3584.tar.bz2 glibc-fa00327fbf80bd0928c0c4babc6680ff1c9f3584.zip |
* sysdeps/libm-i387/s_finite.S: Use %eax instead of %al in setnel insn.
* intl/l10nflist.c: Fix conditional on #include <argz.h>.
* libio/stdio.h (FOPEN_MAX, FILENAME_MAX, TMP_MAX, L_tmpnam): Macros
removed. Instead, include <stdio_lim.h>.
* libio/_G_config.h: New file.
* libio/Makefile (headers): Add _G_config.h.
* MakeTAGS (po/errlist.pot): Extract from sysdeps/gnu/errlist.c.
Diffstat (limited to 'intl/dcgettext.c')
-rw-r--r-- | intl/dcgettext.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/intl/dcgettext.c b/intl/dcgettext.c index 743c85bf22..ba3796d5e0 100644 --- a/intl/dcgettext.c +++ b/intl/dcgettext.c @@ -27,6 +27,7 @@ Cambridge, MA 02139, USA. */ #ifdef __GNUC__ # define alloca __builtin_alloca +# define HAVE_ALLOCA 1 #else # if defined HAVE_ALLOCA_H || defined _LIBC # include <alloca.h> @@ -162,10 +163,6 @@ static const char *guess_category_value PARAMS ((int category, const char *categoryname)); -#ifdef _LIBC -#define HAVE_ALLOCA 1 -#endif - /* For those loosing systems which don't have `alloca' we have to add some additional code emulating it. */ #ifdef HAVE_ALLOCA |