summaryrefslogtreecommitdiffstatshomepage
path: root/unix/file.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-01-01 20:40:19 +0000
committerDamien George <damien.p.george@gmail.com>2015-01-01 20:40:19 +0000
commit6d7e47087fa40a360aa38a576c245e797564dbbe (patch)
treec6a32b0bd2797becad5518f550031515665007b2 /unix/file.c
parent3765ea419a7b68d3349a3c90089cfec9063db94b (diff)
downloadmicropython-6d7e47087fa40a360aa38a576c245e797564dbbe.tar.gz
micropython-6d7e47087fa40a360aa38a576c245e797564dbbe.zip
unix: Prefix includes with py/; remove need for -I../py.
Diffstat (limited to 'unix/file.c')
-rw-r--r--unix/file.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/unix/file.c b/unix/file.c
index 02b8aff186..b62154baaa 100644
--- a/unix/file.c
+++ b/unix/file.c
@@ -31,13 +31,9 @@
#include <sys/stat.h>
#include <sys/types.h>
-#include "mpconfig.h"
-#include "nlr.h"
-#include "misc.h"
-#include "qstr.h"
-#include "obj.h"
-#include "runtime.h"
-#include "stream.h"
+#include "py/nlr.h"
+#include "py/runtime.h"
+#include "py/stream.h"
#ifdef _WIN32
#define fsync _commit