diff options
| author | Damien George | 2015-04-18 14:29:28 +0100 |
|---|---|---|
| committer | Damien George | 2015-04-18 14:29:28 +0100 |
| commit | 259eaab9a9de1b01ac45803fe4f0e58b90f99d84 (patch) | |
| tree | 71f1861922251d0e5ea264bf17d146a94457f67c /cc3200/mods | |
| parent | 2764a8ee8d507ee31c1ceab213fcfcbd1bbb37a6 (diff) | |
cc3200: Clean up and reduce use/include of std.h.
Diffstat (limited to 'cc3200/mods')
| -rw-r--r-- | cc3200/mods/modnetwork.c | 2 | ||||
| -rw-r--r-- | cc3200/mods/modpyb.c | 3 | ||||
| -rw-r--r-- | cc3200/mods/moduos.c | 1 | ||||
| -rw-r--r-- | cc3200/mods/modusocket.c | 1 | ||||
| -rw-r--r-- | cc3200/mods/modwlan.c | 2 | ||||
| -rw-r--r-- | cc3200/mods/pybsleep.c | 1 |
6 files changed, 3 insertions, 7 deletions
diff --git a/cc3200/mods/modnetwork.c b/cc3200/mods/modnetwork.c index fa45e5715..77e8e0658 100644 --- a/cc3200/mods/modnetwork.c +++ b/cc3200/mods/modnetwork.c @@ -25,7 +25,7 @@ * THE SOFTWARE. */ -#include <std.h> +#include <stdio.h> #include <stdint.h> #include <string.h> diff --git a/cc3200/mods/modpyb.c b/cc3200/mods/modpyb.c index fbff8bae6..f7a941d08 100644 --- a/cc3200/mods/modpyb.c +++ b/cc3200/mods/modpyb.c @@ -25,9 +25,8 @@ * THE SOFTWARE. */ - -#include <std.h> #include <stdint.h> +#include "std.h" #include "py/mpstate.h" #include "py/runtime.h" diff --git a/cc3200/mods/moduos.c b/cc3200/mods/moduos.c index 1f9a03e0e..34993f5ca 100644 --- a/cc3200/mods/moduos.c +++ b/cc3200/mods/moduos.c @@ -27,7 +27,6 @@ #include <stdint.h> #include <string.h> -#include "std.h" #include "py/mpconfig.h" #include "py/nlr.h" diff --git a/cc3200/mods/modusocket.c b/cc3200/mods/modusocket.c index a83f3c001..929238c5d 100644 --- a/cc3200/mods/modusocket.c +++ b/cc3200/mods/modusocket.c @@ -25,7 +25,6 @@ * THE SOFTWARE. */ -#include <std.h> #include <stdint.h> #include <string.h> diff --git a/cc3200/mods/modwlan.c b/cc3200/mods/modwlan.c index cf7519a0d..6f3c21ca4 100644 --- a/cc3200/mods/modwlan.c +++ b/cc3200/mods/modwlan.c @@ -24,9 +24,9 @@ * THE SOFTWARE. */ -#include "std.h" #include <stdint.h> #include <stdbool.h> +#include "std.h" #include "simplelink.h" #include "py/mpconfig.h" diff --git a/cc3200/mods/pybsleep.c b/cc3200/mods/pybsleep.c index 427ff518d..334f62446 100644 --- a/cc3200/mods/pybsleep.c +++ b/cc3200/mods/pybsleep.c @@ -24,7 +24,6 @@ * THE SOFTWARE. */ -#include <std.h> #include <stdint.h> #include <string.h> |
