diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-09-16 14:10:43 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-10-04 12:00:19 -0400 |
commit | f7d6b896d641767e04409fc3abf05338b19d9109 (patch) | |
tree | 90ffd8474ff3807d8aacdafb1dd5feda5af2deb6 /include/vsprintf.h | |
parent | 5a719f921871d852a83870b12158e00e8715647e (diff) | |
download | u-boot-f7d6b896d641767e04409fc3abf05338b19d9109.tar.gz |
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>
Diffstat (limited to 'include/vsprintf.h')
-rw-r--r-- | include/vsprintf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/vsprintf.h b/include/vsprintf.h index 490c96ca6d..33d05aa0c6 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); |