diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-21 20:57:00 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-21 20:57:00 +0000 |
commit | fa334f7d14c2fb90bbef3116bf16a0d14d67a2ba (patch) | |
tree | e8ac15eb4e2b1725da0aa68199c3eb0515ab1a7b /gcc/java/jv-scan.c | |
parent | bf7619bc588029ca47cf6d4b157168b10417d026 (diff) | |
download | gcc-fa334f7d14c2fb90bbef3116bf16a0d14d67a2ba.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31550 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/jv-scan.c')
-rw-r--r-- | gcc/java/jv-scan.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/java/jv-scan.c b/gcc/java/jv-scan.c index 0e07f42363e..3d5b3b6eec4 100644 --- a/gcc/java/jv-scan.c +++ b/gcc/java/jv-scan.c @@ -1,5 +1,5 @@ /* Main for jv-scan - Copyright (C) 1998, 1999 Free Software Foundation, Inc. + Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. Contributed by Alexandre Petit-Bianco (apbianco@cygnus.com) This file is part of GNU CC. @@ -24,9 +24,9 @@ Boston, MA 02111-1307, USA. */ #include "obstack.h" /* We use obstacks in lex.c */ -void fatal VPROTO((const char *s, ...)) ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN; -void warning VPROTO((const char *s, ...)) ATTRIBUTE_PRINTF_1; -void gcc_obstack_init PROTO ((struct obstack *obstack)); +void fatal PARAMS ((const char *s, ...)) ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN; +void warning PARAMS ((const char *s, ...)) ATTRIBUTE_PRINTF_1; +void gcc_obstack_init PARAMS ((struct obstack *obstack)); #define JC1_LITE #include "jcf.h" @@ -140,7 +140,7 @@ DEFUN (main, (argc, argv), functions */ void -fatal VPROTO((const char *s, ...)) +fatal VPARAMS ((const char *s, ...)) { #ifndef ANSI_PROTOTYPES const char *s; @@ -161,7 +161,7 @@ fatal VPROTO((const char *s, ...)) } void -warning VPROTO((const char *s, ...)) +warning VPARAMS ((const char *s, ...)) { #ifndef ANSI_PROTOTYPES const char *s; |