aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/xref.h
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/xref.h
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/xref.h')
-rw-r--r--gcc/java/xref.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/java/xref.h b/gcc/java/xref.h
index f0db4ef..ef6c655 100644
--- a/gcc/java/xref.h
+++ b/gcc/java/xref.h
@@ -1,5 +1,5 @@
/* Definitions for the cross reference backend xref.c
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2000 Free Software Foundation, Inc.
Contributed by Alexandre Petit-Bianco (apbianco@cygnus.com)
This file is part of GNU CC.
@@ -24,11 +24,11 @@ of Sun Microsystems, Inc. in the United States and other countries.
The Free Software Foundation is independent of Sun Microsystems, Inc. */
/* Exported functions. */
-int xref_flag_value PROTO ((const char *));
-void expand_xref PROTO ((tree));
-void xref_set_data PROTO ((int, void *));
-void *xref_get_data PROTO ((int));
-void xref_set_current_fp PROTO ((FILE *));
+int xref_flag_value PARAMS ((const char *));
+void expand_xref PARAMS ((tree));
+void xref_set_data PARAMS ((int, void *));
+void *xref_get_data PARAMS ((int));
+void xref_set_current_fp PARAMS ((FILE *));
/* flag_emit_xref range of possible values. */
@@ -40,7 +40,7 @@ enum {
typedef struct {
char *key; /* Activator in -fxref=<key> */
- void (*expand) PROTO ((FILE *, tree)); /* Function to write xrefs out */
+ void (*expand) PARAMS ((FILE *, tree)); /* Function to write xrefs out */
FILE *fp; /* fp to use during the call. */
void *data; /* Placeholder for additional data */
} xref_flag_table;