mirror of
https://github.com/Kitware/CMake.git
synced 2026-06-24 08:47:59 +00:00
11 lines
240 B
C
11 lines
240 B
C
#define C_STD_99 199901L
|
|
#define C_STD_11 201112L
|
|
#define C_STD_17 201710L
|
|
#define C_STD_23 202311L
|
|
|
|
#ifdef __STDC_VERSION__
|
|
# define C_STD __STDC_VERSION__
|
|
#elif defined(__POCC_STDC_VERSION__)
|
|
# define C_STD __POCC_STDC_VERSION__
|
|
#endif
|