summaryrefslogtreecommitdiff
path: root/.ccls-cache/@@home@niliara@configs/@usr@include@bits@types@time_t.h
blob: 00cde92c623375f3f9b86431a95d0c84ba8e1538 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef __time_t_defined
#define __time_t_defined 1

#include <bits/types.h>

/* Returned by `time'.  */
#ifdef __USE_TIME64_REDIRECTS
typedef __time64_t time_t;
#else
typedef __time_t time_t;
#endif

#endif