* src/print_graph.h: Fix.

* src/reader.c (read_declarations): Use parse_header_extension_decl ().
This commit is contained in:
Marc Autret
2001-08-10 10:44:44 +00:00
parent b77b9ee0a3
commit 09a6de7e50
3 changed files with 10 additions and 4 deletions

View File

@@ -1,3 +1,8 @@
2001-08-10 Marc Autret <autret_m@epita.fr>
* src/print_graph.h: Fix.
* src/reader.c (read_declarations): Use parse_header_extension_decl ().
2001-08-10 Akim Demaille <akim@epita.fr>
* src/system.h: Provide default declarations for stpcpy, strndup,

View File

@@ -18,9 +18,9 @@
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
#ifndef PRINT_H_
# define PRINT_H_
#ifndef PRINT_GRAPH_H_
# define PRINT_GRAPH_H_
void print_graph PARAMS ((void));
#endif /* !PRINT_H_ */
#endif /* !PRINT_GRAPH_H_ */

View File

@@ -974,10 +974,11 @@ read_declarations (void)
break;
case tok_hdrext:
parse_header_extension_decl ();
break;
case tok_srcext:
parse_source_extension_decl();
parse_source_extension_decl ();
break;
case tok_noop: