Update.
authorAndreas Jaeger <aj@suse.de>
Wed, 23 Aug 2000 07:22:48 +0000 (07:22 +0000)
committerAndreas Jaeger <aj@suse.de>
Wed, 23 Aug 2000 07:22:48 +0000 (07:22 +0000)
2000-08-23  Andreas Jaeger  <aj@suse.de>

* include/wchar.h: Add some pure attributes.

* time/time.h: Add const attribute for dysize.

* include/stdlib.h: Add malloc attribute to __posix memalign.

* stdlib/stdlib.h: Add some pure and malloc attributes.
* wcsmbs/wchar.h: Likewise.

* dirent/dirent.h: Add some pure attributes.
* include/dirent.h: Likewise.

ChangeLog
include/stdlib.h

index 96ee1b7..1715b5d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
+2000-08-23  Andreas Jaeger  <aj@suse.de>
+
+       * include/wchar.h: Add some pure attributes.
+
+       * time/time.h: Add const attribute for dysize.
+
+       * include/stdlib.h: Add malloc attribute to __posix memalign.
+
+       * stdlib/stdlib.h: Add some pure and malloc attributes.
+       * wcsmbs/wchar.h: Likewise.
+
+       * dirent/dirent.h: Add some pure attributes.
+       * include/dirent.h: Likewise.
+
 2000-08-23  Jakub Jelinek  <jakub@redhat.com>
 
        * inet/netinet/in.h (struct in6_addr): Don't enforce 64bit alignment
index 1bd7904..2ca8ca1 100644 (file)
@@ -55,7 +55,8 @@ extern void _quicksort (void *const pbase, size_t total_elems,
 
 extern int __cxa_atexit (void (*func) (void *), void *arg, void *d);
 
-extern int __posix_memalign (void **memptr, size_t alignment, size_t size);
+extern int __posix_memalign (void **memptr, size_t alignment, size_t size)
+     __attribute_malloc__;
 
 #endif
 #undef __Need_M_And_C