From: Bill Cox Date: Mon, 26 Jul 1993 18:09:09 +0000 (+0000) Subject: Fix print_lang_decl and print_lang_type function headers. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=27d433a2675e143da187bae555e44e1a7b11d880;p=gcc.git Fix print_lang_decl and print_lang_type function headers. From-SVN: r4988 --- diff --git a/gcc/c-decl.c b/gcc/c-decl.c index 39b71e3c975..896b5210329 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; { }