[U-Boot] [PATCH v3 03/12] vsprintf: Include stdarg for va_list
Maxime Ripard
maxime.ripard at free-electrons.com
Fri Jun 24 16:27:48 CEST 2016
vsprintf.h doesn't include the stdarg.h file, which means that it relies on
the files that include vsprintf.h to include stdarg.h as well.
Add an explicit include to avoid build errors when simply including that
file.
Acked-by: Simon Glass <sjg at chromium.org>
Acked-by: Pantelis Antoniou <pantelis.antoniou at konsulko.com>
Signed-off-by: Maxime Ripard <maxime.ripard at free-electrons.com>
---
include/vsprintf.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/include/vsprintf.h b/include/vsprintf.h
index 376f5dd32499..60e91d119eee 100644
--- a/include/vsprintf.h
+++ b/include/vsprintf.h
@@ -8,6 +8,8 @@
#ifndef __VSPRINTF_H
#define __VSPRINTF_H
+#include <stdarg.h>
+
ulong simple_strtoul(const char *cp, char **endp, unsigned int base);
/**
--
2.9.0
More information about the U-Boot
mailing list