Skip to content
Snippets Groups Projects
Commit 8ee43e24 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

lib/utils/printf: Add extra prototypes.

parent c3280d83
Branches
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment