diff options
author | Damien George <damien.p.george@gmail.com> | 2015-01-12 22:30:49 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-01-12 22:30:49 +0000 |
commit | cd3420740909b3b6a2140b613b591b7556b417a2 (patch) | |
tree | 767cea7dc4f378781da48d90fe0952c74979ac63 /stmhal/printf.c | |
parent | 3dd1c0a88aadb2fef210375709a32b6fdf88d3a7 (diff) | |
download | micropython-cd3420740909b3b6a2140b613b591b7556b417a2.tar.gz micropython-cd3420740909b3b6a2140b613b591b7556b417a2.zip |
py: Can compile with -Wmissing-declarations and -Wmissing-prototypes.
Diffstat (limited to 'stmhal/printf.c')
-rw-r--r-- | stmhal/printf.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/stmhal/printf.c b/stmhal/printf.c index a239e898c9..f7a4f1038f 100644 --- a/stmhal/printf.c +++ b/stmhal/printf.c @@ -36,8 +36,6 @@ #include "py/formatfloat.h" #endif -int pfenv_vprintf(const pfenv_t *pfenv, const char *fmt, va_list args); - STATIC void stdout_print_strn(void *dummy_env, const char *str, mp_uint_t len) { stdout_tx_strn_cooked(str, len); } |