lib/utils/printf: Add extra prototypes.

pull/1638/head
Paul Sokolovsky 2015-11-22 00:59:24 +02:00
rodzic c3280d83e7
commit 8ee43e24f3
1 zmienionych plików z 7 dodań i 0 usunięć

Wyświetl plik

@ -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);