commit | 60a3f404acbf8238a3138fe1f80a6bac75da4582 | [log] [tgz] |
---|---|---|
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | Sat Jun 13 12:55:37 2009 +0200 |
committer | Wolfgang Denk <wd@denx.de> | Sun Jul 19 21:34:45 2009 +0200 |
tree | 1d0347c5a9165fc891cbbfad98398458aedee8ab | |
parent | 7640f41988a456a0b1f05263d2e2dc5cd7d93984 [diff] [blame] |
malloc.h: protect it against multiple include Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
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 @@ #ifdef __cplusplus }; /* end of extern "C" */ #endif + +#endif /* __MALLOC_H__ */