diff options
author | Damien George <damien.p.george@gmail.com> | 2017-03-31 22:29:39 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-03-31 22:29:39 +1100 |
commit | b6c7e4b143d96ff9f84ccb22d83b1e15ab084250 (patch) | |
tree | cb1e587ea32fab2bcc2837cdfed498abcfdb9479 /cc3200/mods/pybrtc.c | |
parent | 6e6c01b97189a95b59a037fa7dabcf8217f199af (diff) |
all: Use full path name when including mp-readline/timeutils/netutils.
This follows the pattern of how all other headers are now included, and
makes it explicit where the header file comes from. This patch also
removes -I options from Makefile's that specify the mp-readline/timeutils/
netutils directories, which are no longer needed.
Diffstat (limited to 'cc3200/mods/pybrtc.c')
-rw-r--r-- | cc3200/mods/pybrtc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cc3200/mods/pybrtc.c b/cc3200/mods/pybrtc.c index 13d7a49cb..134bd440e 100644 --- a/cc3200/mods/pybrtc.c +++ b/cc3200/mods/pybrtc.c @@ -29,6 +29,7 @@ #include "py/obj.h" #include "py/runtime.h" #include "py/mperrno.h" +#include "lib/timeutils/timeutils.h" #include "inc/hw_types.h" #include "inc/hw_ints.h" #include "inc/hw_memmap.h" @@ -37,7 +38,6 @@ #include "pybrtc.h" #include "mpirq.h" #include "pybsleep.h" -#include "timeutils.h" #include "simplelink.h" #include "modnetwork.h" #include "modwlan.h" |