From 650f30687e05ee0e8d44521b58cdb4ec10801af3 Mon Sep 17 00:00:00 2001 From: "J. David Anglin" Date: Thu, 18 May 2000 22:48:34 +0000 Subject: [PATCH] * xmalloc.c: Include config.h for HAVE_SBRK definition. From-SVN: r34003 --- libiberty/ChangeLog | 4 ++++ libiberty/xmalloc.c | 3 +++ 2 files changed, 7 insertions(+) diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 6d11a07ae81..c1d0598f817 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,7 @@ +2000-05-18 J. David Anglin + + * xmalloc.c: Include config.h for HAVE_SBRK definition. + 2000-05-16 Horst von Brand * hashtab.c (hash_pointer): Delete low-order bits which are diff --git a/libiberty/xmalloc.c b/libiberty/xmalloc.c index 621c6d216c7..08c23f8126e 100644 --- a/libiberty/xmalloc.c +++ b/libiberty/xmalloc.c @@ -17,6 +17,9 @@ License along with libiberty; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include "ansidecl.h" #include "libiberty.h"