From 075f5820eb681f5ace9d904b9016fad87bf79754 Mon Sep 17 00:00:00 2001 From: rw-r-r-0644 Date: Mon, 19 Sep 2016 19:21:08 +0200 Subject: [PATCH] fixed --- os_types.h | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/os_types.h b/os_types.h index 965376c..aaa18fe 100644 --- a/os_types.h +++ b/os_types.h @@ -8,12 +8,16 @@ extern "C" { #include typedef struct _OSCalendarTime { - int32_t tm_sec; - int32_t tm_min; - int32_t tm_hour; - int32_t tm_mday; - int32_t tm_mon; - int32_t tm_year; + int sec; + int min; + int hour; + int mday; + int mon; + int year; + int wday; + int yday; + int msec; + int usec; } OSCalendarTime; #ifdef __cplusplus