summaryrefslogtreecommitdiff
path: root/time/bits/types/time_t.h
diff options
context:
space:
mode:
Diffstat (limited to 'time/bits/types/time_t.h')
-rw-r--r--time/bits/types/time_t.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/time/bits/types/time_t.h b/time/bits/types/time_t.h
index ab8287c6fe..84d67f6ac3 100644
--- a/time/bits/types/time_t.h
+++ b/time/bits/types/time_t.h
@@ -4,6 +4,10 @@
#include <bits/types.h>
/* Returned by `time'. */
+#ifdef __USE_TIME_BITS64
+typedef __time64_t time_t;
+#else
typedef __time_t time_t;
+#endif
#endif