From: Joe Hershberger Date: Mon, 4 Apr 2016 09:07:33 +0000 (-0500) Subject: common: Always include errno.h in common.h X-Git-Tag: KARO-TXSD-2017-03-15~665^2~4 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=2307ea4053cdf45174f842312d07f538bf5be5f6;p=karo-tx-uboot.git common: Always include errno.h in common.h 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 Reviewed-by: Bin Meng --- diff --git a/include/common.h b/include/common.h index f9f4605dba..3feaae641c 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