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/modffi.c | |
parent | 3765ea419a7b68d3349a3c90089cfec9063db94b (diff) |
unix: Prefix includes with py/; remove need for -I../py.
Diffstat (limited to 'unix/modffi.c')
-rw-r--r-- | unix/modffi.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/unix/modffi.c b/unix/modffi.c index d6d416a3e..e0f2f3f27 100644 --- a/unix/modffi.c +++ b/unix/modffi.c @@ -31,13 +31,9 @@ #include <dlfcn.h> #include <ffi.h> -#include "mpconfig.h" -#include "nlr.h" -#include "misc.h" -#include "qstr.h" -#include "obj.h" -#include "runtime.h" -#include "binary.h" +#include "py/nlr.h" +#include "py/runtime.h" +#include "py/binary.h" /* * modffi uses character codes to encode a value type, based on "struct" |