We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af0e96a commit 0df92d2Copy full SHA for 0df92d2
ext/date/lib/timelib.h
@@ -39,6 +39,22 @@
39
#include <limits.h>
40
#include <inttypes.h>
41
42
+# ifndef HAVE_INT32_T
43
+# if SIZEOF_INT == 4
44
+typedef int int32_t;
45
+# elif SIZEOF_LONG == 4
46
+typedef long int int32_t;
47
+# endif
48
49
+
50
+# ifndef HAVE_UINT32_T
51
52
+typedef unsigned int uint32_t;
53
54
+typedef unsigned long int uint32_t;
55
56
57
58
#ifdef _WIN32
59
# if _MSC_VER >= 1600
60
# include <stdint.h>
0 commit comments