summaryrefslogtreecommitdiffstatshomepage
path: root/py/misc.h
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-02-16 18:11:42 +0200
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-02-16 18:20:49 +0200
commit44739e280e81c2ebf2491818eb5a6d0ef30c7c6b (patch)
treeb3dd81094d08289663452e9c9b744b37750e3869 /py/misc.h
parent1b694c082eeda7b147ac7873964a3dd7bb9583a3 (diff)
downloadmicropython-44739e280e81c2ebf2491818eb5a6d0ef30c7c6b.tar.gz
micropython-44739e280e81c2ebf2491818eb5a6d0ef30c7c6b.zip
Make DEBUG_printf() a proper function, implementation is port-dependent.
In particular, unix outputs to stderr, to allow to run testsuite against micropython built with debug output (by redirecting stderr to /dev/null).
Diffstat (limited to 'py/misc.h')
-rw-r--r--py/misc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/py/misc.h b/py/misc.h
index 065b070892..989650c17a 100644
--- a/py/misc.h
+++ b/py/misc.h
@@ -117,4 +117,7 @@ void vstr_printf(vstr_t *vstr, const char *fmt, ...);
void vstr_vprintf(vstr_t *vstr, const char *fmt, va_list ap);
#endif
+// Debugging helpers
+int DEBUG_printf(const char *fmt, ...);
+
#endif // _INCLUDED_MINILIB_H