cosmopolitan/libc/time/struct/timezone.h

12 lines
268 B
C
Raw Normal View History

2020-06-15 07:18:57 -07:00
#ifndef COSMOPOLITAN_LIBC_TIME_STRUCT_TIMEZONE_H_
#define COSMOPOLITAN_LIBC_TIME_STRUCT_TIMEZONE_H_
COSMOPOLITAN_C_START_
2020-06-15 07:18:57 -07:00
struct timezone {
int32_t tz_minuteswest;
int32_t tz_dsttime;
};
COSMOPOLITAN_C_END_
2020-06-15 07:18:57 -07:00
#endif /* COSMOPOLITAN_LIBC_TIME_STRUCT_TIMEZONE_H_ */