ast2firm: Implement casting from complex to real types.
[cparser] / preprocessor.h
index 48785a0..c03f49e 100644 (file)
@@ -1,3 +1,7 @@
+/*
+ * This file is part of cparser.
+ * Copyright (C) 2012 Matthias Braun <matze@braunis.de>
+ */
 #ifndef PREPROCESSOR_H
 #define PREPROCESSOR_H
 
@@ -30,6 +34,7 @@ extern searchpath_t bracket_searchpath; /**< paths for < > includes */
 extern searchpath_t quote_searchpath;   /**< paths for " " includes */
 extern searchpath_t system_searchpath;  /**< system searchpath (appended to
                                              quote searchpath) */
+extern searchpath_t after_searchpath;   /**< searchpath for -idirafter (also system paths) */
 
 void init_include_paths(void);
 void append_include_path(searchpath_t *searchpath, const char *path);