summaryrefslogtreecommitdiff
path: root/unix
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-03-30 13:54:02 +0100
committerDamien George <damien.p.george@gmail.com>2014-03-30 13:54:02 +0100
commitdf6567e6345c763182fa237a4497ab94ee6ffc20 (patch)
tree402a2bde9d55a10c204f8d766bda228b4f02b74a /unix
parentd17926db710189db97a49e9b2e72d782fc404231 (diff)
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.c1
-rw-r--r--unix/file.c1
-rw-r--r--unix/main.c1
-rw-r--r--unix/socket.c1
4 files changed, 0 insertions, 4 deletions
diff --git a/unix/ffi.c b/unix/ffi.c
index 71fb0b66a..cb63869e0 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 948ec4405..bd54e7482 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 ffbdbb7e7..959499ac3 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 ee74ea084..113b657ff 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"