diff options
Diffstat (limited to 'src/config.h')
-rw-r--r-- | src/config.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/config.h b/src/config.h index db62ef8..821e4a9 100644 --- a/src/config.h +++ b/src/config.h @@ -8,9 +8,17 @@ #ifndef BFS_CONFIG_H #define BFS_CONFIG_H +// Possible __STDC_VERSION__ values + +#define C95 199409L +#define C99 199901L +#define C11 201112L +#define C17 201710L +#define C23 202311L + #include <stddef.h> -#if __STDC_VERSION__ < 202311L +#if __STDC_VERSION__ < C23 # include <stdalign.h> # include <stdbool.h> # include <stdnoreturn.h> |