summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDJ Delorie <dj@delorie.com>2002-01-28 22:03:14 +0000
committerDJ Delorie <dj@delorie.com>2002-01-28 22:03:14 +0000
commitc16afd97630ba42cd2cca1dfdea7b47d36c2974d (patch)
tree2d6e1a3aa4e10ab0e8d1900d34b5e39e1f398ddf
parentc5e0ee2571a1a612a7d7cd2365cdb389abf81724 (diff)
downloadbinutils-redhat-c16afd97630ba42cd2cca1dfdea7b47d36c2974d.tar.gz
merge from gcc
-rw-r--r--include/ChangeLog4
-rw-r--r--include/libiberty.h4
2 files changed, 6 insertions, 2 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index 67ce0571fb..64cd7be6c4 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,7 @@
+2002-01-28 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
+
+ * libiberty.h (C_alloca): Add ATTRIBUTE_MALLOC.
+
2002-01-27 David O'Brien <obrien@FreeBSD.org>
* cgen.h (BFD_VERSION): Use BFD_VERSION_DATE instead.
diff --git a/include/libiberty.h b/include/libiberty.h
index 455643d3a9..3e0ca096c0 100644
--- a/include/libiberty.h
+++ b/include/libiberty.h
@@ -1,6 +1,6 @@
/* Function declarations for libiberty.
- Copyright 2001 Free Software Foundation, Inc.
+ Copyright 2001, 2002 Free Software Foundation, Inc.
Note - certain prototypes declared in this header file are for
functions whoes implementation copyright does not belong to the
@@ -283,7 +283,7 @@ extern int vasprintf PARAMS ((char **, const char *, va_list))
USE_C_ALLOCA yourself. The canonical autoconf macro C_ALLOCA is
also set/unset as it is often used to indicate whether code needs
to call alloca(0). */
-extern PTR C_alloca PARAMS((size_t));
+extern PTR C_alloca PARAMS ((size_t)) ATTRIBUTE_MALLOC;
#undef alloca
#if GCC_VERSION >= 2000 && !defined USE_C_ALLOCA
# define alloca(x) __builtin_alloca(x)