summaryrefslogtreecommitdiff
path: root/.ccls-cache/@@home@niliara@configs/@usr@include@bits@types@struct_timeval.h
diff options
context:
space:
mode:
Diffstat (limited to '.ccls-cache/@@home@niliara@configs/@usr@include@bits@types@struct_timeval.h')
-rwxr-xr-x.ccls-cache/@@home@niliara@configs/@usr@include@bits@types@struct_timeval.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/.ccls-cache/@@home@niliara@configs/@usr@include@bits@types@struct_timeval.h b/.ccls-cache/@@home@niliara@configs/@usr@include@bits@types@struct_timeval.h
new file mode 100755
index 0000000..0c8e88c
--- /dev/null
+++ b/.ccls-cache/@@home@niliara@configs/@usr@include@bits@types@struct_timeval.h
@@ -0,0 +1,18 @@
+#ifndef __timeval_defined
+#define __timeval_defined 1
+
+#include <bits/types.h>
+
+/* A time value that is accurate to the nearest
+ microsecond but also has a range of years. */
+struct timeval
+{
+#ifdef __USE_TIME64_REDIRECTS
+ __time64_t tv_sec; /* Seconds. */
+ __suseconds64_t tv_usec; /* Microseconds. */
+#else
+ __time_t tv_sec; /* Seconds. */
+ __suseconds_t tv_usec; /* Microseconds. */
+#endif
+};
+#endif