summaryrefslogtreecommitdiff
path: root/firmware/libc/include/time.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/libc/include/time.h')
-rw-r--r--firmware/libc/include/time.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/libc/include/time.h b/firmware/libc/include/time.h
index 912fafe7ca..4796b8b083 100644
--- a/firmware/libc/include/time.h
+++ b/firmware/libc/include/time.h
@@ -34,6 +34,8 @@ typedef long time_t;
34#define _TIME_T_DECLARED 34#define _TIME_T_DECLARED
35time_t time(time_t *t); 35time_t time(time_t *t);
36struct tm *localtime(const time_t *timep); 36struct tm *localtime(const time_t *timep);
37struct tm *gmtime(const time_t *timep);
38struct tm *gmtime_r(const time_t *timep, struct tm *result);
37time_t mktime(struct tm *t); 39time_t mktime(struct tm *t);
38 40
39#endif /* SIMULATOR */ 41#endif /* SIMULATOR */