diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2003-01-09 23:16:56 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2003-01-09 23:16:56 +0000 |
commit | d2097937c57963f4bea75df2d0abe691f74de3fe (patch) | |
tree | c01acffab8cc0c484f09b1cdd4401847e024105e /gcc/java/xref.h | |
parent | 30028c85159c12c4e8920af0a9111372e56f1636 (diff) | |
download | gcc-d2097937c57963f4bea75df2d0abe691f74de3fe.zip gcc-d2097937c57963f4bea75df2d0abe691f74de3fe.tar.gz gcc-d2097937c57963f4bea75df2d0abe691f74de3fe.tar.bz2 |
* All Files: Remove PARAMS macro.
From-SVN: r61133
Diffstat (limited to 'gcc/java/xref.h')
-rw-r--r-- | gcc/java/xref.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/java/xref.h b/gcc/java/xref.h index 515f3f6..227bd59 100644 --- a/gcc/java/xref.h +++ b/gcc/java/xref.h @@ -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 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 *)); +int xref_flag_value (const char *); +void expand_xref (tree); +void xref_set_data (int, void *); +void *xref_get_data (int); +void xref_set_current_fp (FILE *); /* flag_emit_xref range of possible values. */ @@ -40,7 +40,7 @@ enum { typedef struct { char *key; /* Activator in -fxref=<key> */ - void (*expand) PARAMS ((FILE *, tree)); /* Function to write xrefs out */ + void (*expand) (FILE *, tree); /* Function to write xrefs out */ FILE *fp; /* fp to use during the call. */ void *data; /* Placeholder for additional data */ } xref_flag_table; |