diff options
Diffstat (limited to 'lib/printf-args.h')
-rw-r--r-- | lib/printf-args.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/printf-args.h b/lib/printf-args.h index c938192b7..4b75c723f 100644 --- a/lib/printf-args.h +++ b/lib/printf-args.h @@ -18,6 +18,9 @@ #ifndef _PRINTF_ARGS_H #define _PRINTF_ARGS_H +/* Get size_t. */ +#include <stddef.h> + /* Get wchar_t. */ #ifdef HAVE_WCHAR_T # include <stddef.h> @@ -116,7 +119,7 @@ argument; typedef struct { - unsigned int count; + size_t count; argument *arg; } arguments; |