]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
include/compiler.h: remove redundant declaration of errno
authorWolfgang Denk <wd@denx.de>
Sun, 20 Jun 2010 00:16:44 +0000 (02:16 +0200)
committerWolfgang Denk <wd@denx.de>
Sun, 20 Jun 2010 00:21:58 +0000 (02:21 +0200)
commit9312bba01a41191f20821b66b84b3ff1d2902e8a
treee9392a2a8fd688aad98b6f03d149dc19034d28b2
parentcd040a4953e55efe89dc3af4acf0302d5923026f
include/compiler.h: remove redundant declaration of errno

Commit 37566090 "compiler.h: unify system ifdef cruft here" added both
a "#include <errno.h>" and a "extern int errno;" to include/compiler.h
which is causing build warnings for some systems, for example for the
"netstar" board:

In file included from /home/wd/git/u-boot/work/lib/crc32.c:15:
include/compiler.h:28: warning: function declaration isn't a prototype

The declaration of "errno" should be redundant, as <errno.h> is
supposed to provide a correct declaration, so drop it.

Signed-off-by: Wolfgang Denk <wd@denx.de>
Cc: Mike Frysinger <vapier@gentoo.org>
include/compiler.h