]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libcpp/init.cc
Update copyright years.
[thirdparty/gcc.git] / libcpp / init.cc
index 250a02aa9938b18454602a3239c831f648bac04b..54fc9236d3801da9a0789bf402bae521f8a7a2fc 100644 (file)
@@ -1,5 +1,5 @@
 /* CPP Library.
-   Copyright (C) 1986-2023 Free Software Foundation, Inc.
+   Copyright (C) 1986-2024 Free Software Foundation, Inc.
    Contributed by Per Bothner, 1994-95.
    Based on CCCP program by Paul Rubin, June 1986
    Adapted to ANSI C, Richard Stallman, Jan 1987
@@ -435,6 +435,8 @@ static const struct builtin_macro builtin_array[] =
   B("__has_builtin",    BT_HAS_BUILTIN,   true),
   B("__has_include",    BT_HAS_INCLUDE,   true),
   B("__has_include_next",BT_HAS_INCLUDE_NEXT,   true),
+  B("__has_feature",    BT_HAS_FEATURE, true),
+  B("__has_extension",  BT_HAS_EXTENSION, true),
   /* Keep builtins not used for -traditional-cpp at the end, and
      update init_builtins() if any more are added.  */
   B("_Pragma",          BT_PRAGMA,        true),