fix
[cparser] / parser.h
index b6ee305..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
@@ -32,7 +32,9 @@ void start_parsing(void);
 void parse(void);
 translation_unit_t *finish_parsing(void);
 
-type_t *revert_automatic_type_conversion(const expression_t *expression);
-declaration_t *expr_is_variable(const expression_t *expression);
+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