mbed_rtc_time.h lacks an include guard

This PR adds it
pull/11661/head
Alex Elium 2019-10-09 17:58:23 -05:00 committed by GitHub
parent 1798c246cc
commit 4ffa363e63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -15,6 +15,9 @@
* limitations under the License.
*/
#ifndef __MBED_RTC_TIME_H__
#define __MBED_RTC_TIME_H__
#include <time.h>
#ifdef __cplusplus
@ -129,3 +132,5 @@ int settimeofday(const struct timeval *tv, const struct timezone *tz);
/** @}*/
/** @}*/
#endif /* __MBED_RTC_TIME_H__ */