cpp-d1064d
[cross.git] / i686-linux-gnu-4.7 / usr / include / x86_64-linux-gnu / bits / types / struct_timeval.h
1 #ifndef __timeval_defined
2 #define __timeval_defined 1
3
4 #include <bits/types.h>
5
6 /* A time value that is accurate to the nearest
7    microsecond but also has a range of years.  */
8 struct timeval
9 {
10   __time_t tv_sec;              /* Seconds.  */
11   __suseconds_t tv_usec;        /* Microseconds.  */
12 };
13 #endif