From 213adf6dffe44d909db0efc5ecbdc047bb029438 Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Thu, 29 Mar 2012 09:28:15 +0000 Subject: Malloc: Fix -Wundef warnings In file included from arch/arm/lib/board.c:43:0: include/malloc.h:490:5: warning: "HAVE_MMAP" is not defined [-Wundef] include/malloc.h:590:5: warning: "HAVE_USR_INCLUDE_MALLOC_H" is not defined [-Wundef] include/malloc.h:757:5: warning: "HAVE_MMAP" is not defined [-Wundef] Signed-off-by: Marek Vasut Cc: Wolfgang Denk --- include/malloc.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/malloc.h') diff --git a/include/malloc.h b/include/malloc.h index ecf3c678fe..6295929ea3 100644 --- a/include/malloc.h +++ b/include/malloc.h @@ -487,7 +487,7 @@ do { \ ***/ #undef HAVE_MREMAP /* Not available for U-Boot */ -#if HAVE_MMAP +#ifdef HAVE_MMAP #include #include @@ -587,7 +587,7 @@ do { \ /* #define HAVE_USR_INCLUDE_MALLOC_H */ -#if HAVE_USR_INCLUDE_MALLOC_H +#ifdef HAVE_USR_INCLUDE_MALLOC_H #include "/usr/include/malloc.h" #else @@ -754,7 +754,7 @@ struct mallinfo { #ifndef DEFAULT_MMAP_MAX -#if HAVE_MMAP +#ifdef HAVE_MMAP #define DEFAULT_MMAP_MAX (64) #else #define DEFAULT_MMAP_MAX (0) -- cgit v1.2.1