mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-28 04:03:35 +08:00
Update.
1998-05-23 Thorsten Kukuk <kukuk@vt.uni-paderborn.de> * nis/nis_defaults.c: Fix buffer problems and typos. 1998-05-23 08:42 Ulrich Drepper <drepper@cygnus.com> * intl/dcgettext.c: Don't use any alloca hacks if C_ALLOCA is defined. Patch by Fred Fish.
This commit is contained in:
parent
6958e78dd1
commit
81ec479710
@ -1,3 +1,12 @@
|
||||
1998-05-23 Thorsten Kukuk <kukuk@vt.uni-paderborn.de>
|
||||
|
||||
* nis/nis_defaults.c: Fix buffer problems and typos.
|
||||
|
||||
1998-05-23 08:42 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* intl/dcgettext.c: Don't use any alloca hacks if C_ALLOCA is defined.
|
||||
Patch by Fred Fish.
|
||||
|
||||
1998-05-22 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* stdlib/random_r.c (__random_r): Rewrite last patch to fix buffer
|
||||
|
@ -25,11 +25,11 @@
|
||||
|
||||
#include <sys/types.h>
|
||||
|
||||
#ifdef __GNUC__
|
||||
#if defined __GNUC__ && !defined C_ALLOCA
|
||||
# define alloca __builtin_alloca
|
||||
# define HAVE_ALLOCA 1
|
||||
#else
|
||||
# if defined HAVE_ALLOCA_H || defined _LIBC
|
||||
# if (defined HAVE_ALLOCA_H || defined _LIBC && !defined C_ALLOCA
|
||||
# include <alloca.h>
|
||||
# else
|
||||
# ifdef _AIX
|
||||
|
Loading…
Reference in New Issue
Block a user