summaryrefslogtreecommitdiff
path: root/time/bits/types/struct_timeval64.h
diff options
context:
space:
mode:
Diffstat (limited to 'time/bits/types/struct_timeval64.h')
-rw-r--r--time/bits/types/struct_timeval64.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/time/bits/types/struct_timeval64.h b/time/bits/types/struct_timeval64.h
new file mode 100644
index 0000000000..e4966ea525
--- /dev/null
+++ b/time/bits/types/struct_timeval64.h
@@ -0,0 +1,13 @@
+#ifndef __timeval64_defined
+#define __timeval64_defined 1
+
+#include <bits/types.h>
+
+/* A time value that is accurate to the nearest
+ microsecond but also has a range of years. */
+struct __timeval64
+{
+ __time64_t tv_sec; /* Seconds */
+ __int64_t tv_usec; /* Microseconds */
+};
+#endif