From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joe Hershberger Date: Mon, 4 Apr 2016 04:07:33 -0500 Subject: [U-Boot] [PATCH 1/6] common: Always include errno.h in common.h In-Reply-To: <1459760858-25071-1-git-send-email-joe.hershberger@ni.com> References: <1459760858-25071-1-git-send-email-joe.hershberger@ni.com> Message-ID: <1459760858-25071-2-git-send-email-joe.hershberger@ni.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de We want people using errnos for errors instead of -1, so make it easy by always including the definition of all the errnos. Signed-off-by: Joe Hershberger --- include/common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/common.h b/include/common.h index f9f4605..3feaae6 100644 --- a/include/common.h +++ b/include/common.h @@ -16,6 +16,7 @@ typedef volatile unsigned short vu_short; typedef volatile unsigned char vu_char; #include +#include #include #include #include -- 1.7.11.5