aboutsummaryrefslogtreecommitdiff
path: root/REORG.TODO/time/bits/types/struct_timespec.h
blob: 644db9fdb62062915fba7d829f0447e1e8961077 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __timespec_defined
#define __timespec_defined 1

#include <bits/types.h>

/* POSIX.1b structure for a time value.  This is like a `struct timeval' but
   has nanoseconds instead of microseconds.  */
struct timespec
{
  __time_t tv_sec;		/* Seconds.  */
  __syscall_slong_t tv_nsec;	/* Nanoseconds.  */
};

#endif