summaryrefslogtreecommitdiffstats
path: root/include/stdlib.h
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2005-07-22 06:49:31 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2005-07-22 06:49:31 +0000
commit7a4daea1ea52c84588630329db7e14cbc4d12c41 (patch)
tree6d7f69512147c98b63ad7934f2a3abe1c67e7065 /include/stdlib.h
parent9a97faafbcd7bc23d5adf32f4ed135bdf623629a (diff)
downloaduClibc-alpine-7a4daea1ea52c84588630329db7e14cbc4d12c41.tar.bz2
uClibc-alpine-7a4daea1ea52c84588630329db7e14cbc4d12c41.tar.xz
Fixed up resolver and errno code such that both thread models can compile without stepping on each other. The original implementation pulled from glibc was done incorrectly and has been fixed.
Diffstat (limited to 'include/stdlib.h')
-rw-r--r--include/stdlib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
index eaeb7a104..2e437d3fc 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -491,7 +491,7 @@ extern void *valloc (size_t __size) __THROW __attribute_malloc__;
#ifdef __USE_XOPEN2K
/* Allocate memory of SIZE bytes with an alignment of ALIGNMENT. */
extern int posix_memalign (void **__memptr, size_t __alignment, size_t __size)
- __THROW __attribute_malloc__;
+ __THROW;
#endif
__BEGIN_NAMESPACE_STD