diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-08-15 18:17:14 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-08-15 18:17:14 +0000 |
commit | 5a0a51a7accbc4c57f4172cc8ede5bd19ea64efd (patch) | |
tree | e31c78b1e0de9369190336da0f11d9725d593039 | |
parent | 38783506fe50f98837d9e2456d576d0a8acb3060 (diff) |
add include of stdio.h, so that base64.c compiles
-rw-r--r-- | include/curl/mprintf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/curl/mprintf.h b/include/curl/mprintf.h index 6bf24791c..30c4d447f 100644 --- a/include/curl/mprintf.h +++ b/include/curl/mprintf.h @@ -54,6 +54,7 @@ #define H_MPRINTF #include <stdarg.h> +#include <stdio.h> /* needed for FILE */ int curl_mprintf(const char *format, ...); int curl_mfprintf(FILE *fd, const char *format, ...); |