diff options
author | Damien George <damien.p.george@gmail.com> | 2015-01-01 20:40:19 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-01-01 20:40:19 +0000 |
commit | 6d7e47087fa40a360aa38a576c245e797564dbbe (patch) | |
tree | c6a32b0bd2797becad5518f550031515665007b2 /unix/modsocket.c | |
parent | 3765ea419a7b68d3349a3c90089cfec9063db94b (diff) | |
download | micropython-6d7e47087fa40a360aa38a576c245e797564dbbe.tar.gz micropython-6d7e47087fa40a360aa38a576c245e797564dbbe.zip |
unix: Prefix includes with py/; remove need for -I../py.
Diffstat (limited to 'unix/modsocket.c')
-rw-r--r-- | unix/modsocket.c | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/unix/modsocket.c b/unix/modsocket.c index 402695d65b..3982650f1b 100644 --- a/unix/modsocket.c +++ b/unix/modsocket.c @@ -38,16 +38,12 @@ #include <netdb.h> #include <errno.h> -#include "mpconfig.h" -#include "nlr.h" -#include "misc.h" -#include "qstr.h" -#include "obj.h" -#include "objtuple.h" -#include "objstr.h" -#include "runtime.h" -#include "stream.h" -#include "builtin.h" +#include "py/nlr.h" +#include "py/objtuple.h" +#include "py/objstr.h" +#include "py/runtime.h" +#include "py/stream.h" +#include "py/builtin.h" /* The idea of this module is to implement reasonable minimum of |