aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorBill Cox <bill@gnu.org>1993-07-26 18:09:09 +0000
committerBill Cox <bill@gnu.org>1993-07-26 18:09:09 +0000
commit27d433a2675e143da187bae555e44e1a7b11d880 (patch)
tree0c05c1add48bb301900348fa3d4d5f5f6b3ebc48 /gcc
parentac1284f984356d3f123e44cdbe3126dbb5b434a9 (diff)
downloadgcc-27d433a2675e143da187bae555e44e1a7b11d880.zip
gcc-27d433a2675e143da187bae555e44e1a7b11d880.tar.gz
gcc-27d433a2675e143da187bae555e44e1a7b11d880.tar.bz2
Fix print_lang_decl and print_lang_type function headers.
From-SVN: r4988
Diffstat (limited to 'gcc')
-rw-r--r--gcc/c-decl.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c
index 39b71e3..896b521 100644
--- a/gcc/c-decl.c
+++ b/gcc/c-decl.c
@@ -696,12 +696,18 @@ c_decode_option (p)
/* Hooks for print_node. */
void
-print_lang_decl ()
+print_lang_decl (file, node, indent)
+ FILE *file;
+ tree node;
+ int indent;
{
}
void
-print_lang_type ()
+print_lang_type (file, node, indent)
+ FILE *file;
+ tree node;
+ int indent;
{
}