From 87dfc765706222d8be348f9ad78ad2c704704f53 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Mon, 21 Nov 2016 00:48:55 +0300 Subject: unix: Rename define for unix moduselect to MICROPY_PY_USELECT_POSIX. To not conflict with recently made available globally baremetal moduselect. --- unix/moduselect.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'unix/moduselect.c') diff --git a/unix/moduselect.c b/unix/moduselect.c index 4a6973c0d5..3b5daa53d6 100644 --- a/unix/moduselect.c +++ b/unix/moduselect.c @@ -27,7 +27,7 @@ #include "py/mpconfig.h" -#if MICROPY_PY_USELECT +#if MICROPY_PY_USELECT_POSIX #include #include @@ -238,4 +238,4 @@ const mp_obj_module_t mp_module_uselect = { .globals = (mp_obj_dict_t*)&mp_module_select_globals, }; -#endif // MICROPY_PY_USELECT +#endif // MICROPY_PY_USELECT_POSIX -- cgit v1.2.3