diff options
author | Damien George <damien.p.george@gmail.com> | 2014-03-30 13:54:02 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-03-30 13:54:02 +0100 |
commit | df6567e6345c763182fa237a4497ab94ee6ffc20 (patch) | |
tree | 402a2bde9d55a10c204f8d766bda228b4f02b74a /unix | |
parent | d17926db710189db97a49e9b2e72d782fc404231 (diff) | |
download | micropython-df6567e6345c763182fa237a4497ab94ee6ffc20.tar.gz micropython-df6567e6345c763182fa237a4497ab94ee6ffc20.zip |
Merge map.h into obj.h.
Pretty much everyone needs to include map.h, since it's such an integral
part of the Micro Python object implementation. Thus, the definitions
are now in obj.h instead. map.h is removed.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/ffi.c | 1 | ||||
-rw-r--r-- | unix/file.c | 1 | ||||
-rw-r--r-- | unix/main.c | 1 | ||||
-rw-r--r-- | unix/socket.c | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/unix/ffi.c b/unix/ffi.c index 71fb0b66ab..cb63869e09 100644 --- a/unix/ffi.c +++ b/unix/ffi.c @@ -9,7 +9,6 @@ #include "mpconfig.h" #include "qstr.h" #include "obj.h" -#include "map.h" #include "runtime.h" #include "binary.h" diff --git a/unix/file.c b/unix/file.c index 948ec44051..bd54e7482c 100644 --- a/unix/file.c +++ b/unix/file.c @@ -9,7 +9,6 @@ #include "mpconfig.h" #include "qstr.h" #include "obj.h" -#include "map.h" #include "runtime.h" #include "stream.h" diff --git a/unix/main.c b/unix/main.c index ffbdbb7e79..959499ac34 100644 --- a/unix/main.c +++ b/unix/main.c @@ -15,7 +15,6 @@ #include "lexerunix.h" #include "parse.h" #include "obj.h" -#include "map.h" #include "parsehelper.h" #include "compile.h" #include "runtime0.h" diff --git a/unix/socket.c b/unix/socket.c index ee74ea0845..113b657fff 100644 --- a/unix/socket.c +++ b/unix/socket.c @@ -15,7 +15,6 @@ #include "mpconfig.h" #include "qstr.h" #include "obj.h" -#include "map.h" #include "objtuple.h" #include "objarray.h" #include "runtime.h" |