diff options
Diffstat (limited to 'firmware/libc/include')
-rw-r--r-- | firmware/libc/include/time.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/firmware/libc/include/time.h b/firmware/libc/include/time.h index 4796b8b083..217b454321 100644 --- a/firmware/libc/include/time.h +++ b/firmware/libc/include/time.h | |||
@@ -28,6 +28,12 @@ struct tm | |||
28 | #if !defined(_TIME_T_DEFINED) && !defined(_TIME_T_DECLARED) | 28 | #if !defined(_TIME_T_DEFINED) && !defined(_TIME_T_DECLARED) |
29 | typedef long time_t; | 29 | typedef long time_t; |
30 | 30 | ||
31 | struct utimbuf | ||
32 | { | ||
33 | time_t actime; | ||
34 | time_t modtime; | ||
35 | }; | ||
36 | |||
31 | /* this define below is used by the mingw headers to prevent duplicate | 37 | /* this define below is used by the mingw headers to prevent duplicate |
32 | typedefs */ | 38 | typedefs */ |
33 | #define _TIME_T_DEFINED | 39 | #define _TIME_T_DEFINED |