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/modtermios.c | |
parent | 3765ea419a7b68d3349a3c90089cfec9063db94b (diff) |
unix: Prefix includes with py/; remove need for -I../py.
Diffstat (limited to 'unix/modtermios.c')
-rw-r--r-- | unix/modtermios.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/unix/modtermios.c b/unix/modtermios.c index 0fa0e1394..091e5e5f7 100644 --- a/unix/modtermios.c +++ b/unix/modtermios.c @@ -29,13 +29,9 @@ #include <unistd.h> #include <errno.h> -#include "mpconfig.h" -#include "misc.h" -#include "nlr.h" -#include "qstr.h" -#include "obj.h" -#include "runtime.h" -#include "objlist.h" +#include "py/nlr.h" +#include "py/objlist.h" +#include "py/runtime.h" #define RAISE_ERRNO(err_flag, error_val) \ { if (err_flag == -1) \ |