diff options
author | Roland McGrath <roland@gnu.org> | 1996-07-12 02:01:17 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-07-12 02:01:17 +0000 |
commit | 842907c6f8e6022f443175072e65bc516eb0973b (patch) | |
tree | 626cc5413c07820d66cbdb1ea841f56af09c7346 /intl/localealias.c | |
parent | e6c9a67a0bdb970f3b7f7ced6581b98cfe35797c (diff) | |
download | glibc-842907c6f8e6022f443175072e65bc516eb0973b.tar glibc-842907c6f8e6022f443175072e65bc516eb0973b.tar.gz glibc-842907c6f8e6022f443175072e65bc516eb0973b.tar.bz2 glibc-842907c6f8e6022f443175072e65bc516eb0973b.zip |
* inet/getnetent_r.c: Define NEED_H_ERRNO.cvs/libc-960713cvs/libc-960712
* inet/getnetbynm_r.c: Likewise.
* inet/getnetent.c: Likewise.
* inet/getnetbyad_r.c: Likewise.
* inet/getnetbyad.c: Likewise.
* inet/getnetbynm.c: Likewise.
* sysdeps/generic/pselect.c: Include <sys/time.h>.
* misc/sys/select.h: Include <time.h> instead of <sys/time.h> for
`struct timespec'.
Diffstat (limited to 'intl/localealias.c')
-rw-r--r-- | intl/localealias.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/intl/localealias.c b/intl/localealias.c index b30a9e5bf5..6e2b27d51b 100644 --- a/intl/localealias.c +++ b/intl/localealias.c @@ -56,6 +56,9 @@ void free (); #endif #if defined HAVE_STRING_H || defined _LIBC +# ifndef _GNU_SOURCE +# define _GNU_SOURCE 1 +# endif # include <string.h> #else # include <strings.h> @@ -110,6 +113,8 @@ struct block_list free (old); \ } \ } while (0) +# undef alloca +# define alloca(size) (malloc (size)) #endif /* have alloca */ @@ -188,7 +193,7 @@ read_alias_file (fname, fname_len) int fname_len; { #ifndef HAVE_ALLOCA - struct block_list *alloca_list = NULL; + struct block_list *block_list = NULL; #endif FILE *fp; char *full_fname; |