From mboxrd@z Thu Jan 1 00:00:00 1970 From: Wolfgang Denk Date: Sat, 10 Sep 2011 00:38:42 +0200 Subject: [U-Boot] [PATCH] Fix warning: "assert" redefined In-Reply-To: <1309376974-12943-1-git-send-email-sjg@chromium.org> References: <1309376974-12943-1-git-send-email-sjg@chromium.org> Message-ID: <1315607922-7285-1-git-send-email-wd@denx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Commit 21726a7 "Add assert() for debug assertions" caused build warnings for many systems: In file included from bedbug.c:6: /home/wd/git/u-boot/work/include/bedbug/bedbug.h:24:1: warning: "assert" redefined In file included from bedbug.c:3: /home/wd/git/u-boot/work/include/common.h:144:1: warning: this is the location of the previous definition In file included from cmd_bedbug.c:10: /home/wd/git/u-boot/work/include/bedbug/bedbug.h:24:1: warning: "assert" redefined In file included from cmd_bedbug.c:5: /home/wd/git/u-boot/work/include/common.h:144:1: warning: this is the location of the previous definition Signed-off-by: Wolfgang Denk Cc: Simon Glass --- include/bedbug/bedbug.h | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/include/bedbug/bedbug.h b/include/bedbug/bedbug.h index 471215e..0c5d687 100644 --- a/include/bedbug/bedbug.h +++ b/include/bedbug/bedbug.h @@ -21,8 +21,6 @@ #endif #endif -#define assert( condition ) if( (condition) ) _exit(0) - #endif /* _BEDBUG_H */ -- 1.7.6