diff options
author | Michael Hope <michael.hope@linaro.org> | 2010-09-29 20:42:18 +1300 |
---|---|---|
committer | Michael Hope <michael.hope@linaro.org> | 2010-09-29 20:42:18 +1300 |
commit | 368e4fc1662c2594b2a0908900713a2555a3ed8e (patch) | |
tree | 97b34b963c08d89747c952ea2f1f8c346bbd7ecc /wirish | |
parent | b43977a8f65053a77b8bd24dfa0457f2b512147b (diff) | |
download | librambutan-368e4fc1662c2594b2a0908900713a2555a3ed8e.tar.gz librambutan-368e4fc1662c2594b2a0908900713a2555a3ed8e.zip |
Fixed up the build due to a missing header file.
Diffstat (limited to 'wirish')
-rw-r--r-- | wirish/time.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/wirish/time.h b/wirish/time.h index ad39057..f4612fa 100644 --- a/wirish/time.h +++ b/wirish/time.h @@ -29,14 +29,15 @@ #ifndef _TIME_H #define _TIME_H -#ifdef __cplusplus -extern "C"{ -#endif - +#include "libmaple.h" #include "nvic.h" #include "systick.h" #include "boards.h" +#ifdef __cplusplus +extern "C"{ +#endif + #define US_PER_MS 1000 extern volatile uint32 systick_timer_millis; |