diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-07-13 23:07:42 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-07-19 21:27:22 +0300 |
commit | cb66f41ebc4980f4e6b7543bece19e3b9daac25c (patch) | |
tree | f16cd4ce92d787b9ceb0bb9015c9636fbfe58dea /py/modsys.c | |
parent | 04c9fec7d1b8666fc3210f41619dff2465b42227 (diff) | |
download | micropython-cb66f41ebc4980f4e6b7543bece19e3b9daac25c.tar.gz micropython-cb66f41ebc4980f4e6b7543bece19e3b9daac25c.zip |
py: Make print() accept "file" argument, and actually print to stream.
And not system printf(), like it was before. For this, move pfenv_printf()
from stmhal port to py/.
Diffstat (limited to 'py/modsys.c')
-rw-r--r-- | py/modsys.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/py/modsys.c b/py/modsys.c index d215846762..c248e5626f 100644 --- a/py/modsys.c +++ b/py/modsys.c @@ -44,9 +44,6 @@ // only addresses. struct _dummy_t; extern struct _dummy_t mp_sys_exit_obj; -extern struct _dummy_t mp_sys_stdin_obj; -extern struct _dummy_t mp_sys_stdout_obj; -extern struct _dummy_t mp_sys_stderr_obj; extern mp_obj_int_t mp_maxsize_obj; |