From 9cd3e10283ea0c6cc997afc5353c0f314b3aa092 Mon Sep 17 00:00:00 2001 From: nil Date: Tue, 14 Jan 2025 20:16:17 +0100 Subject: changing host repository --- .../@usr@include@bits@types@struct_timeval.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 .ccls-cache/@@home@niliara@configs/@usr@include@bits@types@struct_timeval.h (limited to '.ccls-cache/@@home@niliara@configs/@usr@include@bits@types@struct_timeval.h') 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 + +/* 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 -- cgit v1.2.3