aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/jcf-reader.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@versicolor.rutgers.edu>2000-01-21 20:57:00 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2000-01-21 20:57:00 +0000
commitdf32d2ce42d7607e7f189bab047762bb16d8d2c8 (patch)
treee8ac15eb4e2b1725da0aa68199c3eb0515ab1a7b /gcc/java/jcf-reader.c
parent7652adb5c699caf28e8139289e6cd8a2f203c0f8 (diff)
downloadgcc-df32d2ce42d7607e7f189bab047762bb16d8d2c8.zip
gcc-df32d2ce42d7607e7f189bab047762bb16d8d2c8.tar.gz
gcc-df32d2ce42d7607e7f189bab047762bb16d8d2c8.tar.bz2
buffer.h: PROTO -> PARAMS.
* buffer.h: PROTO -> PARAMS. * check-init.c: Likewise. * class.c: Likewise. * constants.c: Likewise. * convert.h: Likewise. * decl.c: Likewise. * except.c: Likewise. * expr.c: Likewise. * gjavah.c: Likewise. * java-except.h: Likewise. * java-tree.h: Likewise. * jcf-depend.c: Likewise. * jcf-dump.c: Likewise. * jcf-parse.c: Likewise. * jcf-path.c: Likewise. * jcf-reader.c: Likewise. * jcf-write.c: Likewise. * jcf.h: Likewise. * jv-scan.c: Likewise. * jvgenmain.c: Likewise. * jvspec.c: Likewise. * lang.c: Likewise. * lex.c: Likewise. * lex.h: Likewise. * parse-scan.y: Likewise. * parse.h: Likewise. * parse.y: Likewise. * typeck.c: Likewise. * verify.c: Likewise. * xref.c: Likewise. * xref.h: Likewise. * zextract.c: Likewise. * zipfile.h: Likewise. From-SVN: r31550
Diffstat (limited to 'gcc/java/jcf-reader.c')
-rw-r--r--gcc/java/jcf-reader.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/gcc/java/jcf-reader.c b/gcc/java/jcf-reader.c
index 44fb37e..1dabf65 100644
--- a/gcc/java/jcf-reader.c
+++ b/gcc/java/jcf-reader.c
@@ -2,7 +2,7 @@
It is not stand-alone: It depends on tons of macros, and the
intent is you #include this file after you've defined the macros.
- Copyright (C) 1996 Free Software Foundation, Inc.
+ Copyright (C) 1996, 97-99, 2000 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -26,14 +26,14 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */
#include "jcf.h"
#include "zipfile.h"
-static int get_attribute PROTO((JCF *));
-static int jcf_parse_preamble PROTO((JCF *));
-static int jcf_parse_constant_pool PROTO((JCF *));
-static void jcf_parse_class PROTO((JCF *));
-static int jcf_parse_fields PROTO((JCF *));
-static int jcf_parse_one_method PROTO((JCF *));
-static int jcf_parse_methods PROTO((JCF *));
-static int jcf_parse_final_attributes PROTO((JCF *));
+static int get_attribute PARAMS ((JCF *));
+static int jcf_parse_preamble PARAMS ((JCF *));
+static int jcf_parse_constant_pool PARAMS ((JCF *));
+static void jcf_parse_class PARAMS ((JCF *));
+static int jcf_parse_fields PARAMS ((JCF *));
+static int jcf_parse_one_method PARAMS ((JCF *));
+static int jcf_parse_methods PARAMS ((JCF *));
+static int jcf_parse_final_attributes PARAMS ((JCF *));
static int
DEFUN(get_attribute, (jcf),