about summary refs log tree commit diff
path: root/time/bits/types/struct_itimerspec64.h
blob: 039af1cad5a53d120db052f91677622697b27acd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __itimerspec64_defined
#define __itimerspec64_defined 1

#include <bits/types.h>
#include <bits/types/struct_timespec.h>
#include <bits/types/struct_timespec64.h>

/* POSIX.1b structure for timer start values and intervals.  */
struct __itimerspec64
{
  struct __timespec64 it_interval;
  struct __timespec64 it_value;
};

#endif