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/modtime.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/modtime.c')
-rw-r--r-- | unix/modtime.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/unix/modtime.c b/unix/modtime.c index 7325525aa1..2efb7fab36 100644 --- a/unix/modtime.c +++ b/unix/modtime.c @@ -30,11 +30,7 @@ #include <sys/time.h> #include <math.h> -#include "mpconfig.h" -#include "misc.h" -#include "qstr.h" -#include "obj.h" -#include "runtime.h" +#include "py/runtime.h" #ifdef _WIN32 void msec_sleep_tv(struct timeval *tv) { |