diff options
Diffstat (limited to 'py/modsys.c')
-rw-r--r-- | py/modsys.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/py/modsys.c b/py/modsys.c index 4ea60a697d..5051e72951 100644 --- a/py/modsys.c +++ b/py/modsys.c @@ -39,9 +39,9 @@ /// \module sys - system specific functions // defined per port; type of these is irrelevant, just need pointer -extern mp_uint_t mp_sys_stdin_obj; -extern mp_uint_t mp_sys_stdout_obj; -extern mp_uint_t mp_sys_stderr_obj; +extern struct _mp_dummy_t mp_sys_stdin_obj; +extern struct _mp_dummy_t mp_sys_stdout_obj; +extern struct _mp_dummy_t mp_sys_stderr_obj; /// \constant version - Python language version that this implementation conforms to, as a string STATIC const MP_DEFINE_STR_OBJ(version_obj, "3.4.0"); |