diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-11-21 16:34:57 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-11-21 16:54:15 +0200 |
commit | 295ea12411ca12a41947de3113febb29e469ac4c (patch) | |
tree | 7d2ee9ba2e7b2ccdeb07d2865fa6413f1c388a2b /lib/utils/printf.c | |
parent | 72bd172b305fc7e3c8d3a111e0453f4420d1a10b (diff) | |
download | micropython-295ea12411ca12a41947de3113febb29e469ac4c.tar.gz micropython-295ea12411ca12a41947de3113febb29e469ac4c.zip |
py/emitglue: Host definition of mp_verbose_flag.
This may not seem like the ideal place, but is actually the only place
in py/ where it gets referenced, so is just right.
Diffstat (limited to 'lib/utils/printf.c')
-rw-r--r-- | lib/utils/printf.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/utils/printf.c b/lib/utils/printf.c index 611ad2df4c..082b1c65a8 100644 --- a/lib/utils/printf.c +++ b/lib/utils/printf.c @@ -48,8 +48,6 @@ int vprintf(const char *fmt, va_list ap) { } #if MICROPY_DEBUG_PRINTERS -mp_uint_t mp_verbose_flag = 1; - int DEBUG_printf(const char *fmt, ...) { va_list ap; va_start(ap, fmt); |