some more work towards (c++) namespace support
[cparser] / parser.h
index 1bc004d..964799f 100644 (file)
--- a/parser.h
+++ b/parser.h
@@ -1,6 +1,6 @@
 /*
  * This file is part of cparser.
- * Copyright (C) 2007-2008 Matthias Braun <matze@braunis.de>
+ * Copyright (C) 2007-2009 Matthias Braun <matze@braunis.de>
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
@@ -35,4 +35,6 @@ translation_unit_t *finish_parsing(void);
 type_t   *revert_automatic_type_conversion(const expression_t *expression);
 entity_t *expression_is_variable(const expression_t *expression);
 
+void prepare_main_collect2(entity_t *entity);
+
 #endif