diff options
author | xbe <xbe@machine> | 2014-03-16 00:14:26 -0700 |
---|---|---|
committer | xbe <xbe@machine> | 2014-03-17 02:43:40 -0700 |
commit | efe34223945a5d27a7ae9445d0793d6330cd2411 (patch) | |
tree | 7d3a9d2b59259696c0cf619174a55eb417b61464 /py/parse.c | |
parent | c93a22197bfdb9323fa176eca4d30f307963ce9d (diff) | |
download | micropython-efe34223945a5d27a7ae9445d0793d6330cd2411.tar.gz micropython-efe34223945a5d27a7ae9445d0793d6330cd2411.zip |
py: Clean up includes.
Remove unnecessary includes. Add includes that improve portability.
Diffstat (limited to 'py/parse.c')
-rw-r--r-- | py/parse.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/py/parse.c b/py/parse.c index a7b73a5673..1381f1293d 100644 --- a/py/parse.c +++ b/py/parse.c @@ -1,9 +1,6 @@ -#include <unistd.h> -#include <stdlib.h> +#include <stdbool.h> #include <stdint.h> #include <stdio.h> -#include <ctype.h> -#include <string.h> #include <assert.h> #include "misc.h" |