From 4ffa363e63688e07a048ab1d3831887096d63d94 Mon Sep 17 00:00:00 2001 From: Alex Elium Date: Wed, 9 Oct 2019 17:58:23 -0500 Subject: [PATCH] mbed_rtc_time.h lacks an include guard This PR adds it --- platform/mbed_rtc_time.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/platform/mbed_rtc_time.h b/platform/mbed_rtc_time.h index f86ffc37f5..c5ec07bb91 100644 --- a/platform/mbed_rtc_time.h +++ b/platform/mbed_rtc_time.h @@ -15,6 +15,9 @@ * limitations under the License. */ +#ifndef __MBED_RTC_TIME_H__ +#define __MBED_RTC_TIME_H__ + #include #ifdef __cplusplus @@ -129,3 +132,5 @@ int settimeofday(const struct timeval *tv, const struct timezone *tz); /** @}*/ /** @}*/ + +#endif /* __MBED_RTC_TIME_H__ */