master
 1#ifndef __wasilibc___struct_tm_h
 2#define __wasilibc___struct_tm_h
 3
 4struct tm {
 5    int tm_sec;
 6    int tm_min;
 7    int tm_hour;
 8    int tm_mday;
 9    int tm_mon;
10    int tm_year;
11    int tm_wday;
12    int tm_yday;
13    int tm_isdst;
14    int __tm_gmtoff;
15    const char *__tm_zone;
16    int __tm_nsec;
17};
18
19#endif