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 fdff1f0 commit a8204d2Copy full SHA for a8204d2
src/gnuwin32/fixed/h/Rconfig.h
@@ -29,6 +29,8 @@
29
/* #undef HAVE_ALLOCA_H */
30
/* optional C99 type */
31
#define HAVE_UINTPTR_T 1
32
+/* C23 (or clang) extension */
33
+#define HAVE_ENUM_BASE_TYPE 1
34
35
#endif /* not R_CONFIG_H */
36
tools/GETCONFIG
@@ -42,6 +42,9 @@ echo "${line}"
42
echo "/* optional C99 type */"
43
line=`grep "HAVE_UINTPTR_T" config.h`
44
echo "${line}"
45
+echo "/* C23 (or clang) extension */"
46
+line=`grep "HAVE_ENUM_BASE_TYPE" config.h`
47
+echo "${line}"
48
echo
49
echo "#endif /* not R_CONFIG_H */"
50
0 commit comments