diff options
author | Damien George <damien.p.george@gmail.com> | 2015-02-21 18:58:43 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-02-21 18:58:43 +0000 |
commit | 4a23a01945fa59051fd99fe3be78d836326cbada (patch) | |
tree | 9da3acf7782b191013fc9ac707047daab054fa5a /cc3200/mods/modusocket.c | |
parent | eff359e114bc41ea1278f01a18ab50ac896f8cf0 (diff) | |
download | micropython-4a23a01945fa59051fd99fe3be78d836326cbada.tar.gz micropython-4a23a01945fa59051fd99fe3be78d836326cbada.zip |
cc3200: Add explicit py/ path-prefix for py includes.
This is how it should be, so one knows exactly where the includes are
coming from.
Diffstat (limited to 'cc3200/mods/modusocket.c')
-rw-r--r-- | cc3200/mods/modusocket.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/cc3200/mods/modusocket.c b/cc3200/mods/modusocket.c index 7356942f21..743db53d5e 100644 --- a/cc3200/mods/modusocket.c +++ b/cc3200/mods/modusocket.c @@ -30,18 +30,11 @@ #include <string.h> #include "simplelink.h" -#include "mpconfig.h" +#include "py/mpstate.h" #include MICROPY_HAL_H -#include "nlr.h" -#include "misc.h" -#include "qstr.h" -#include "obj.h" -#include "objtuple.h" -#include "objlist.h" -#include "runtime.h" +#include "py/runtime.h" #include "modnetwork.h" #include "mpexception.h" -#include "mpstate.h" /******************************************************************************/ // socket class |