Skip to content
Snippets Groups Projects
Commit 213adf6d authored by Marek Vasut's avatar Marek Vasut Committed by Wolfgang Denk
Browse files

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: default avatarMarek Vasut <marek.vasut@gmail.com>
Cc: Wolfgang Denk <wd@denx.de>
parent 47fde91f
No related branches found
No related tags found
No related merge requests found
......@@ -487,7 +487,7 @@ do { \
***/
#undef HAVE_MREMAP /* Not available for U-Boot */
#if HAVE_MMAP
#ifdef HAVE_MMAP
#include <unistd.h>
#include <fcntl.h>
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment