summaryrefslogtreecommitdiffstats
path: root/src/time64.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/time64.h')
-rw-r--r--src/time64.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/time64.h b/src/time64.h
index 28968c0..2c20ffe 100644
--- a/src/time64.h
+++ b/src/time64.h
@@ -11,6 +11,13 @@ typedef long long Int64;
11typedef Int64 Time64_T; 11typedef Int64 Time64_T;
12typedef Int64 Year; 12typedef Int64 Year;
13 13
14#ifndef TIME64_MIN
15#define TIME64_MIN ((Time64_T)INT64_MIN)
16#endif
17
18#ifndef TIME64_MAX
19#define TIME64_MAX ((Time64_T)INT64_MAX)
20#endif
14 21
15/* A copy of the tm struct but with a 64 bit year */ 22/* A copy of the tm struct but with a 64 bit year */
16struct TM64 { 23struct TM64 {