Added map
diff --git a/py/obj.h b/py/obj.h
index 00d152e..7779c47 100644
--- a/py/obj.h
+++ b/py/obj.h
@@ -294,6 +294,9 @@
 void mp_obj_list_store(mp_obj_t self_in, mp_obj_t index, mp_obj_t value);
 mp_obj_t mp_obj_list_sort(mp_obj_t args, struct _mp_map_t *kwargs);
 
+// map (the python builtin, not the dict implementation detail)
+extern const mp_obj_type_t map_type;
+
 // enumerate
 extern const mp_obj_type_t enumerate_type;