aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2000-01-26 21:22:58 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2000-01-26 21:22:58 +0000
commitc96a8082c969a0eff2e6f769240de63366a5e8c2 (patch)
tree0559ff9a7ea4dbf286232933832c290f7055216e
parent158991b7e5be34f9464adadacb734743d4e39ca6 (diff)
downloadgcc-c96a8082c969a0eff2e6f769240de63366a5e8c2.zip
gcc-c96a8082c969a0eff2e6f769240de63366a5e8c2.tar.gz
gcc-c96a8082c969a0eff2e6f769240de63366a5e8c2.tar.bz2
* i386/cygwin.h: PROTO -> PARAMS.
From-SVN: r31633
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/i386/cygwin.h18
2 files changed, 13 insertions, 9 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 69cdb87..a793903 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2000-01-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
+
+ * i386/cygwin.h: PROTO -> PARAMS.
+
2000-01-26 Jakub Jelinek <jakub@redhat.com>
* config/sparc/sparc.c (sparc_emit_float_lib_cmp): Handle
diff --git a/gcc/config/i386/cygwin.h b/gcc/config/i386/cygwin.h
index 2a3e82d..225c8d1 100644
--- a/gcc/config/i386/cygwin.h
+++ b/gcc/config/i386/cygwin.h
@@ -496,24 +496,24 @@ do { \
/* External function declarations. */
-#ifndef PROTO
+#ifndef PARAMS
#if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
-#define PROTO(ARGS) ARGS
+#define PARAMS(ARGS) ARGS
#else
-#define PROTO(ARGS) ()
+#define PARAMS(ARGS) ()
#endif
#endif
#ifdef BUFSIZ /* stdio.h has been included, ok to use FILE * */
-#define STDIO_PROTO(ARGS) PROTO(ARGS)
+#define STDIO_PARAMS(ARGS) PARAMS(ARGS)
#else
-#define STDIO_PROTO(ARGS) ()
+#define STDIO_PARAMS(ARGS) ()
#endif
-extern void i386_pe_record_external_function PROTO((char *));
-extern void i386_pe_declare_function_type STDIO_PROTO((FILE *, char *, int));
-extern void i386_pe_record_exported_symbol PROTO((char *, int));
-extern void i386_pe_asm_file_end STDIO_PROTO((FILE *));
+extern void i386_pe_record_external_function PARAMS ((char *));
+extern void i386_pe_declare_function_type STDIO_PARAMS ((FILE *, char *, int));
+extern void i386_pe_record_exported_symbol PARAMS ((char *, int));
+extern void i386_pe_asm_file_end STDIO_PARAMS ((FILE *));
/* For Win32 ABI compatibility */
#undef DEFAULT_PCC_STRUCT_RETURN