diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/malloc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/malloc.h b/include/malloc.h index 20d799ca5..3209fb070 100644 --- a/include/malloc.h +++ b/include/malloc.h @@ -125,8 +125,10 @@ extern void free __MALLOC_P ((__malloc_ptr_t __ptr)); extern __malloc_ptr_t memalign __MALLOC_P ((size_t __alignment, size_t __size)); libc_hidden_proto(memalign) +#ifdef __UCLIBC_SUSV2_LEGACY__ /* Allocate SIZE bytes on a page boundary. */ extern __malloc_ptr_t valloc __MALLOC_P ((size_t __size)) __attribute_malloc__; +#endif #ifdef __MALLOC_STANDARD__ |