* libiberty.h (C_alloca): Add ATTRIBUTE_MALLOC.
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 28 Jan 2002 21:08:34 +0000 (21:08 +0000)
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 28 Jan 2002 21:08:34 +0000 (21:08 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@49299 138bc75d-0d04-0410-961f-82ee72b054a4

include/ChangeLog
include/libiberty.h

index bf5df1d..5825542 100644 (file)
@@ -1,3 +1,7 @@
+2002-01-28  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * libiberty.h (C_alloca): Add ATTRIBUTE_MALLOC.
+
 2001-12-06  Richard Henderson  <rth@redhat.com>
 
        * demangle.h (no_demangling): New.
index 455643d..3e0ca09 100644 (file)
@@ -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)