about summary refs log tree commit diff
path: root/include
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2000-08-23 07:22:48 +0000
committerAndreas Jaeger <aj@suse.de>2000-08-23 07:22:48 +0000
commitd6585e0b91f3348822add766da656eeec0302be0 (patch)
treef2a0a7ce21331952e759e4954f6efee15f23f52b /include
parentbe2623ae79d7d9dcce9e41c04eb96da98bd3b33c (diff)
downloadglibc-d6585e0b91f3348822add766da656eeec0302be0.tar.gz
glibc-d6585e0b91f3348822add766da656eeec0302be0.tar.xz
glibc-d6585e0b91f3348822add766da656eeec0302be0.zip
Update.
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.
Diffstat (limited to 'include')
-rw-r--r--include/stdlib.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
index 1bd7904672..2ca8ca1743 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -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