diff options
Diffstat (limited to 'time/sys')
-rw-r--r-- | time/sys/time.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/time/sys/time.h b/time/sys/time.h index 4c8562fa29..c0753337c2 100644 --- a/time/sys/time.h +++ b/time/sys/time.h @@ -33,14 +33,6 @@ struct timeval int tv_usec; /* Microseconds. */ }; -/* POSIX.4 structure for a time value. This is like a `struct timeval' but - has nanoseconds instead of microseconds. */ -struct timespec - { - long int ts_sec; /* Seconds. */ - long int ts_nsec; /* Nanoseconds. */ - }; - /* Macros for converting between `struct timeval' and `struct timespec'. */ #define TIMEVAL_TO_TIMESPEC(tv, ts) { \ (ts)->ts_sec = (tv)->tv_sec; \ |