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 7841e9b commit ba6fa80Copy full SHA for ba6fa80
lib/xy.h
@@ -22,6 +22,13 @@
22
#define _XY_Maintain_URL "https://github.com/RubyMetric/chsrc/blob/main/lib/xy.h"
23
#define _XY_Maintain_URL2 "https://gitee.com/RubyMetric/chsrc/blob/main/lib/xy.h"
24
25
+#if defined(__STDC__) && __STDC_VERSION__ < 201112L
26
+# error "xy.h requires C11 or later, please use a new compiler which at least supports C11"
27
+#endif
28
+
29
+#if defined(__STDC__) && __STDC_VERSION__ < 201710L
30
+# warning "xy.h recommends a C17 or later compiler"
31
32
33
#include <assert.h>
34
#include <stdarg.h>
0 commit comments