(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
plugin/
header_plugin.c
       1  #include "gcc-plugin.h"
       2  #include <stdlib.h>
       3  #include "config.h"
       4  #include "system.h"
       5  #include "coretypes.h"
       6  #include "tree.h"
       7  #include "tree-pass.h"
       8  #include "intl.h"
       9  
      10  /* reqs */
      11  #include "tm.h"
      12  
      13  /* gcc/ headers. */
      14  #include "cp/cp-tree.h"
      15  #include "diagnostic.h"
      16  #include "c-family/c-common.h"
      17  #include "c-family/c-pretty-print.h"
      18  #include "tree-iterator.h"
      19  #include "plugin.h"
      20  #include "langhooks.h"
      21  #include "cp/cxx-pretty-print.h"
      22  #include "cp/name-lookup.h"
      23  
      24  int plugin_is_GPL_compatible;
      25  
      26  int
      27  plugin_init (struct plugin_name_args *plugin_info,
      28               struct plugin_gcc_version *version)
      29  {
      30    return 0;
      31  }