diff options
Diffstat (limited to 'lib/utils/printf.c')
-rw-r--r-- | lib/utils/printf.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/utils/printf.c b/lib/utils/printf.c index 6dce896941..6822564f35 100644 --- a/lib/utils/printf.c +++ b/lib/utils/printf.c @@ -35,6 +35,13 @@ #include "py/formatfloat.h" #endif +int printf(const char *fmt, ...); +int vprintf(const char *fmt, va_list ap); +int putchar(int c); +int puts(const char *s); +int vsnprintf(char *str, size_t size, const char *fmt, va_list ap); +int snprintf(char *str, size_t size, const char *fmt, ...); + int printf(const char *fmt, ...) { va_list ap; va_start(ap, fmt); |