Blame time/bits/types/struct_timespec.h

Packit 6c4009
/* NB: Include guard matches what <linux/time.h> uses.  */
Packit 6c4009
#ifndef _STRUCT_TIMESPEC
Packit 6c4009
#define _STRUCT_TIMESPEC 1
Packit 6c4009
Packit 6c4009
#include <bits/types.h>
Packit 6c4009
Packit 6c4009
/* POSIX.1b structure for a time value.  This is like a `struct timeval' but
Packit 6c4009
   has nanoseconds instead of microseconds.  */
Packit 6c4009
struct timespec
Packit 6c4009
{
Packit 6c4009
  __time_t tv_sec;		/* Seconds.  */
Packit 6c4009
  __syscall_slong_t tv_nsec;	/* Nanoseconds.  */
Packit 6c4009
};
Packit 6c4009
Packit 6c4009
#endif