From 868d059a1405f814048041a0329021122542520c Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Tue, 5 Feb 2013 19:11:36 +0100 Subject: mman: rename MAP_UNINITIALIZE to MAP_UNINITIALIZED The name was changed to include a trailing 'D' when it went into the kernel. Signed-off-by: Bernhard Reutner-Fischer --- libc/stdlib/malloc-standard/malloc.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libc/stdlib/malloc-standard/malloc.h') diff --git a/libc/stdlib/malloc-standard/malloc.h b/libc/stdlib/malloc-standard/malloc.h index 9b411bdb8..d945627c6 100644 --- a/libc/stdlib/malloc-standard/malloc.h +++ b/libc/stdlib/malloc-standard/malloc.h @@ -353,13 +353,13 @@ __UCLIBC_MUTEX_EXTERN(__malloc_lock) #endif #ifdef __ARCH_USE_MMU__ -# define _MAP_UNINITIALIZE 0 +# define _MAP_UNINITIALIZED 0 #else -# define _MAP_UNINITIALIZE MAP_UNINITIALIZE +# define _MAP_UNINITIALIZED MAP_UNINITIALIZED #endif #define MMAP(addr, size, prot) \ - (mmap((addr), (size), (prot), MAP_PRIVATE|MAP_ANONYMOUS|_MAP_UNINITIALIZE, 0, 0)) + (mmap((addr), (size), (prot), MAP_PRIVATE|MAP_ANONYMOUS|_MAP_UNINITIALIZED, 0, 0)) /* ----------------------- Chunk representations ----------------------- */ -- cgit v1.2.3