aboutsummaryrefslogtreecommitdiff
path: root/extmod
diff options
context:
space:
mode:
authorDamien George2015-03-14 23:11:25 +0000
committerDamien George2015-03-14 23:11:25 +0000
commit1ef26b35c1682637de143ccb0449acb42428ed5c (patch)
tree8fe0420245dd71452ccdb6f82c0256abcf9949b0 /extmod
parent836e46976f27a6a0fbbbf0a28e50c27d4b3fc725 (diff)
py, extmod: Remove include of unnecessary system headers.
Diffstat (limited to 'extmod')
-rw-r--r--extmod/moduheapq.c2
-rw-r--r--extmod/modujson.c2
-rw-r--r--extmod/moduzlib.c5
3 files changed, 0 insertions, 9 deletions
diff --git a/extmod/moduheapq.c b/extmod/moduheapq.c
index 8112b5525..5c5ed06a1 100644
--- a/extmod/moduheapq.c
+++ b/extmod/moduheapq.c
@@ -24,8 +24,6 @@
* THE SOFTWARE.
*/
-#include <unistd.h>
-
#include "py/nlr.h"
#include "py/objlist.h"
#include "py/runtime0.h"
diff --git a/extmod/modujson.c b/extmod/modujson.c
index b5384bbc4..747a86ac6 100644
--- a/extmod/modujson.c
+++ b/extmod/modujson.c
@@ -25,8 +25,6 @@
*/
#include <stdio.h>
-#include <unistd.h>
-#include <string.h>
#include "py/nlr.h"
#include "py/objlist.h"
diff --git a/extmod/moduzlib.c b/extmod/moduzlib.c
index 8b72d14ac..31544059e 100644
--- a/extmod/moduzlib.c
+++ b/extmod/moduzlib.c
@@ -25,11 +25,6 @@
*/
#include <stdio.h>
-#include <unistd.h>
-#include <string.h>
-#include <time.h>
-#include <sys/time.h>
-#include <math.h>
#include "py/nlr.h"
#include "py/runtime.h"