mescc: Tinycc support: declare struct tm.

* mlibc/include/time.h (struct tm): New type.
This commit is contained in:
Jan Nieuwenhuizen 2017-07-22 09:22:11 +02:00
parent ef4868eb13
commit 2ab93d7308
1 changed files with 12 additions and 0 deletions

View File

@ -24,6 +24,18 @@
#include_next <time.h>
#else // ! (__GNUC__ && POSIX)
typedef int time_t;
struct tm {
int tm_sec; /* Seconds (0-60) */
int tm_min; /* Minutes (0-59) */
int tm_hour; /* Hours (0-23) */
int tm_mday; /* Day of the month (1-31) */
int tm_mon; /* Month (0-11) */
int tm_year; /* Year - 1900 */
int tm_wday; /* Day of the week (0-6, Sunday = 0) */
int tm_yday; /* Day in the year (0-365, 1 Jan = 0) */
int tm_isdst; /* Daylight saving time */
};
#endif // ! (__GNUC__ && POSIX)
#endif // __MES_TIME_H