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 07917f2 commit e5ed65dCopy full SHA for e5ed65d
graalpython/com.oracle.graal.python.cext/include/pyconfig.h
@@ -41,6 +41,11 @@
41
#ifndef Py_PYCONFIG_H
42
#define Py_PYCONFIG_H
43
44
+/* Enable GNU extensions on systems that have them. */
45
+#ifndef _GNU_SOURCE
46
+#define _GNU_SOURCE 1
47
+#endif
48
+
49
// required for __UINT32_MAX__ etc.
50
#include <limits.h>
51
@@ -69,11 +74,6 @@
69
74
/* Define to 1 if you have the ANSI C header files. */
70
75
#define STDC_HEADERS 1
71
76
72
-/* Enable GNU extensions on systems that have them. */
73
-#ifndef _GNU_SOURCE
-#define _GNU_SOURCE 1
-#endif
-
77
# ifndef UINT_MAX
78
#define UINT_MAX __UINT32_MAX__
79
#endif
0 commit comments