| author | Rich Felker <dalias@aerifal.cx> | 2016年07月03日 14:40:11 -0400 |
|---|---|---|
| committer | Rich Felker <dalias@aerifal.cx> | 2016年07月03日 15:02:25 -0400 |
| commit | befa5866ee30d09c0c96e88af2eabff5911342ea (patch) | |
| tree | a72045d740e0a4b204ef6d742f7f3a3ca12e6c0e /include/time.h | |
| parent | 093288dcb37a30c634b0a00eb7e2a0dbe72ebf95 (diff) | |
| download | musl-befa5866ee30d09c0c96e88af2eabff5911342ea.tar.gz | |
| -rw-r--r-- | include/time.h | 6 |
diff --git a/include/time.h b/include/time.h index 16ec08ae..a408679c 100644 --- a/include/time.h +++ b/include/time.h @@ -35,8 +35,7 @@ extern "C" { #define __tm_zone tm_zone #endif -struct tm -{ +struct tm { int tm_sec; int tm_min; int tm_hour; @@ -78,8 +77,7 @@ char *ctime_r (const time_t *, char *); void tzset (void); -struct itimerspec -{ +struct itimerspec { struct timespec it_interval; struct timespec it_value; }; |