From: Jean-Christophe PLAGNIOL-VILLARD Date: Sat, 13 Jun 2009 10:55:37 +0000 (+0200) Subject: malloc.h: protect it against multiple include X-Git-Tag: v2009.08-rc1~58 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=60a3f404acbf8238a3138fe1f80a6bac75da4582;p=kernel%2Fu-boot.git malloc.h: protect it against multiple include Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- diff --git a/include/malloc.h b/include/malloc.h index 47154b0..a38464e 100644 --- a/include/malloc.h +++ b/include/malloc.h @@ -216,7 +216,8 @@ */ - +#ifndef __MALLOC_H__ +#define __MALLOC_H__ /* Preliminaries */ @@ -940,3 +941,5 @@ struct mallinfo mALLINFo(); #ifdef __cplusplus }; /* end of extern "C" */ #endif + +#endif /* __MALLOC_H__ */