commit | f7d6b896d641767e04409fc3abf05338b19d9109 | [log] [tgz] |
---|---|---|
author | Masahiro Yamada <yamada.masahiro@socionext.com> | Sat Sep 16 14:10:43 2017 +0900 |
committer | Tom Rini <trini@konsulko.com> | Wed Oct 04 12:00:19 2017 -0400 |
tree | 90ffd8474ff3807d8aacdafb1dd5feda5af2deb6 | |
parent | 5a719f921871d852a83870b12158e00e8715647e [diff] |
vsprintf.h: include <linux/types.h> This header uses ulong, size_t, loff_t. Include <linux/types.h> to make this header self-contained. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
diff --git a/include/vsprintf.h b/include/vsprintf.h index 490c96c..33d05aa 100644 --- a/include/vsprintf.h +++ b/include/vsprintf.h
@@ -9,6 +9,7 @@ #define __VSPRINTF_H #include <stdarg.h> +#include <linux/types.h> ulong simple_strtoul(const char *cp, char **endp, unsigned int base);