preprocessor: implement stringify operation '#'
[cparser] / lang_features.h
index cbcfad2..65ed32e 100644 (file)
 
 typedef enum lang_features_t {
        _C89  = 1U << 0,
-       _ANSI = 1U << 1,
-       _C99  = 1U << 2,
-       _CXX  = 1U << 3,
-       _GNUC = 1U << 4,
-       _MS   = 1U << 5,
+       _C99  = 1U << 1,
+       _CXX  = 1U << 2,
+       _GNUC = 1U << 3,
+       _MS   = 1U << 4,
        _ALL  = 0xFF
 } lang_features_t;