diff options
Diffstat (limited to 'Tests/CompileFeatures/default_dialect.c')
-rw-r--r-- | Tests/CompileFeatures/default_dialect.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Tests/CompileFeatures/default_dialect.c b/Tests/CompileFeatures/default_dialect.c index cae107b..4cd4ca0 100644 --- a/Tests/CompileFeatures/default_dialect.c +++ b/Tests/CompileFeatures/default_dialect.c @@ -1,18 +1,19 @@ +#include "c_std.h" #if DEFAULT_C23 -# if __STDC_VERSION__ <= 201710L +# if C_STD <= C_STD_17 # error Unexpected value for __STDC_VERSION__. # endif #elif DEFAULT_C17 -# if __STDC_VERSION__ < 201710L +# if C_STD <= C_STD_11 # error Unexpected value for __STDC_VERSION__. # endif #elif DEFAULT_C11 -# if __STDC_VERSION__ < 201112L +# if C_STD <= C_STD_99 # error Unexpected value for __STDC_VERSION__. # endif #elif DEFAULT_C99 -# if __STDC_VERSION__ != 199901L +# if C_STD != C_STD_99 # error Unexpected value for __STDC_VERSION__. # endif #else |