summaryrefslogtreecommitdiff
path: root/gcc/c-pretty-print.h
diff options
context:
space:
mode:
authoraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>2003-06-22 13:41:26 +0000
committeraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>2003-06-22 13:41:26 +0000
commit2b30d46c7032fcbb90f95d7695dfd00e56d05d46 (patch)
tree25db40631432a7695af6af0b9995522fa0bf6716 /gcc/c-pretty-print.h
parent428602c9907da466ef309835e867067d2f1a319d (diff)
downloadgcc-2b30d46c7032fcbb90f95d7695dfd00e56d05d46.tar.gz
* c-lex.c: Convert to ISO C90.
* c-objc-common.c: Likewise. * c-opts.c: Likewise. * c-pch.c: Likewise. * c-ppoutput.c: Likewise. * c-pragma.h: Likewise. * c-pretty-print.c: Likewise. * c-pretty-print.h: Likewise. * c-semantics.c: Likewise. * c-tree.h: Likewise. * c-typeck.c: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68327 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-pretty-print.h')
-rw-r--r--gcc/c-pretty-print.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/gcc/c-pretty-print.h b/gcc/c-pretty-print.h
index 3bdd6fec4a7..95cd4eff198 100644
--- a/gcc/c-pretty-print.h
+++ b/gcc/c-pretty-print.h
@@ -1,5 +1,5 @@
/* Various declarations for the C and C++ pretty-printers.
- Copyright (C) 2002 Free Software Foundation, Inc.
+ Copyright (C) 2002, 2003 Free Software Foundation, Inc.
Contributed by Gabriel Dos Reis <gdr@integrable-solutions.net>
This file is part of GCC.
@@ -32,7 +32,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
typedef struct c_pretty_print_info *c_pretty_printer;
/* The type of a C pretty-printer 'member' function. */
-typedef void (*c_pretty_print_fn) PARAMS ((c_pretty_printer, tree));
+typedef void (*c_pretty_print_fn) (c_pretty_printer, tree);
struct c_pretty_print_info
{
@@ -144,22 +144,22 @@ struct c_pretty_print_info
macro must be overridden by any subclass of c_pretty_print_info. */
#define pp_c_base(PP) (PP)
-extern void pp_c_pretty_printer_init PARAMS ((c_pretty_printer));
+extern void pp_c_pretty_printer_init (c_pretty_printer);
/* Declarations. */
-void pp_c_attributes PARAMS ((c_pretty_printer, tree));
-void pp_c_cv_qualifier PARAMS ((c_pretty_printer, int));
-void pp_c_parameter_declaration_clause PARAMS ((c_pretty_printer, tree));
-void pp_c_declaration PARAMS ((c_pretty_printer, tree));
+void pp_c_attributes (c_pretty_printer, tree);
+void pp_c_cv_qualifier (c_pretty_printer, int);
+void pp_c_parameter_declaration_clause (c_pretty_printer, tree);
+void pp_c_declaration (c_pretty_printer, tree);
/* Statements. */
-void pp_c_statement PARAMS ((c_pretty_printer, tree));
+void pp_c_statement (c_pretty_printer, tree);
/* Expressions. */
-void pp_c_expression PARAMS ((c_pretty_printer, tree));
-void pp_c_logical_or_expression PARAMS ((c_pretty_printer, tree));
-void pp_c_expression_list PARAMS ((c_pretty_printer, tree));
-void pp_c_cast_expression PARAMS ((c_pretty_printer, tree));
-void pp_c_postfix_expression PARAMS ((c_pretty_printer, tree));
-void pp_c_initializer PARAMS ((c_pretty_printer, tree));
-void pp_c_literal PARAMS ((c_pretty_printer, tree));
+void pp_c_expression (c_pretty_printer, tree);
+void pp_c_logical_or_expression (c_pretty_printer, tree);
+void pp_c_expression_list (c_pretty_printer, tree);
+void pp_c_cast_expression (c_pretty_printer, tree);
+void pp_c_postfix_expression (c_pretty_printer, tree);
+void pp_c_initializer (c_pretty_printer, tree);
+void pp_c_literal (c_pretty_printer, tree);
#endif /* GCC_C_PRETTY_PRINTER */