blob: dd8d8cf2a2ce01e0049e55454b95d806ec32ecce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
diff --git a/timelib_private.h b/timelib_private.h
index cd402e0..efc7c80 100644
--- a/ext/date/lib/timelib_private.h
+++ b/ext/date/lib/timelib_private.h
@@ -115,7 +115,7 @@
m = NULL; \
}
-typedef struct ttinfo
+struct ttinfo
{
int32_t offset;
int isdst;
@@ -123,13 +123,13 @@ typedef struct ttinfo
unsigned int isstdcnt;
unsigned int isgmtcnt;
-} ttinfo;
+};
-typedef struct tlinfo
+struct tlinfo
{
int32_t trans;
int32_t offset;
-} tlinfo;
+};
#ifndef LONG_MAX
|