Blame time/bits/types/struct_timeval.h

Packit 6c4009
#ifndef __timeval_defined
Packit 6c4009
#define __timeval_defined 1
Packit 6c4009
Packit 6c4009
#include <bits/types.h>
Packit 6c4009
Packit 6c4009
/* A time value that is accurate to the nearest
Packit 6c4009
   microsecond but also has a range of years.  */
Packit 6c4009
struct timeval
Packit 6c4009
{
Packit 6c4009
  __time_t tv_sec;		/* Seconds.  */
Packit 6c4009
  __suseconds_t tv_usec;	/* Microseconds.  */
Packit 6c4009
};
Packit 6c4009
#endif