Update.
authorUlrich Drepper <drepper@redhat.com>
Sun, 19 Dec 1999 08:44:05 +0000 (08:44 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 19 Dec 1999 08:44:05 +0000 (08:44 +0000)
* malloc/malloc.h: Make malloc, calloc, realloc, valloc, pvalloc,
and __default_morecore with __attribute_malloc__.

ChangeLog
malloc/malloc.h

index d3d08a1..72dbc99 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -16,8 +16,8 @@
        __attribute_malloc__.
        * stdlib/stdlib.h: Make malloc, calloc, realloc, and valloc with
        __attribute_malloc__.
-       * malloc/malloc.h: Make malloc, calloc, realloc, valloc, pvallc,
-       __morecore, and __default_morecore with __attribute_malloc__.
+       * malloc/malloc.h: Make malloc, calloc, realloc, valloc, pvalloc,
+       and __default_morecore with __attribute_malloc__.
        Provide default definition for __attribute_malloc__.
        * libio/stdio.h: Make tempnam with __attribute_malloc__.
 
index 78deff0..15d4a44 100644 (file)
@@ -147,8 +147,7 @@ extern __malloc_ptr_t  pvalloc __MALLOC_P ((size_t __size))
 
 /* Underlying allocation function; successive calls should return
    contiguous pieces of memory.  */
-extern __malloc_ptr_t (*__morecore) __MALLOC_PMT ((ptrdiff_t __size))
-       __attribute_malloc__;
+extern __malloc_ptr_t (*__morecore) __MALLOC_PMT ((ptrdiff_t __size));
 
 /* Default value of `__morecore'.  */
 extern __malloc_ptr_t __default_morecore __MALLOC_P ((ptrdiff_t __size))